@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-darker: #07050f;
  --bg-dark: #0f0c1b;
  --bg-card: #15102a;
  --bg-card-hover: #1e173b;
  --primary: #ff6600;
  --primary-light: #ff8533;
  --primary-glow: rgba(255, 102, 0, 0.45);
  --secondary: #ff7700;
  --secondary-glow: rgba(255, 119, 0, 0.45);
  --accent-cyan: #ff9900;
  --accent-green: #10b981;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(255, 102, 0, 0.6);
  --sidebar-width: 260px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-pink: 0 0 15px rgba(255, 102, 0, 0.45);
  --glow-purple: 0 0 15px rgba(255, 102, 0, 0.45);
  --glow-orange: 0 0 20px rgba(255, 102, 0, 0.6);
  --glow-blue: 0 0 15px rgba(59, 130, 246, 0.4);
}

/* Reset & Scrollbar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent !important;
}
button:focus,
button:active,
.btn:focus,
.btn:active,
a:focus,
a:active,
[role="button"]:focus {
  outline: none !important;
  box-shadow: none !important;
}

body {
  background-color: var(--bg-darker);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Base Loader Animation - Smooth Fade Overlay (No Door Split) */
#loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-darker);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

body.light-mode #loader-screen {
  background: #ffffff !important;
}

#loader-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Loader Content Wrapper */
.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#loader-screen.fade-out .loader-content {
  transform: scale(0.92);
}

/* Multi-Ring Orbiting Spinner (No Text) */
.loader-spinner-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.loader-logo-wrap {
  position: relative;
  z-index: 5;
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 35px rgba(255, 102, 0, 0.3);
  animation: loader-pulse 2s ease-in-out infinite alternate;
}

#loader-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 102, 0, 0.6));
}

.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.loader-ring.ring-1 {
  width: 145px;
  height: 145px;
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  animation: spin-cw 1.6s linear infinite;
  filter: drop-shadow(0 0 10px var(--primary));
}

.loader-ring.ring-2 {
  width: 175px;
  height: 175px;
  border-bottom-color: var(--secondary);
  border-left-color: var(--secondary);
  animation: spin-ccw 2.2s linear infinite;
  filter: drop-shadow(0 0 12px var(--secondary));
}

.loader-ring.ring-3 {
  width: 205px;
  height: 205px;
  border: 2px dashed rgba(255, 102, 0, 0.45);
  border-top-color: transparent;
  animation: spin-cw 3.8s linear infinite;
}

@keyframes spin-cw {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-ccw {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes loader-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 18px rgba(255, 102, 0, 0.2); }
  100% { transform: scale(1.08); box-shadow: 0 0 45px rgba(255, 102, 0, 0.5); }
}

/* Minimalist Progress Bar */
.loader-bar-container {
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.light-mode .loader-bar-container {
  background: rgba(0, 0, 0, 0.08);
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff7700 0%, #ff6600 100%);
  border-radius: 10px;
  box-shadow: 0 0 12px var(--primary);
  transition: width 0.1s ease-out;
}

/* Site Entrance Reveal Animation ("animasiya ilə açılsın sayt") */
#main-header,
main,
footer {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

body.site-loaded #main-header,
body.site-loaded main,
body.site-loaded footer {
  opacity: 1;
}

/* Mouse-follow Glowing Backdrop */
#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle 350px at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(255, 102, 0, 0.06), transparent 80%);
  transition: opacity 0.3s ease;
  will-change: transform;
}
@media (max-width: 1024px) {
  #cursor-glow {
    display: none;
  }
}

/* Button Shimmer Sweep Effect */
.btn-primary, .btn-secondary, .btn-buy, .mobile-auth-login-btn, .mobile-auth-register-btn {
  position: relative;
  overflow: hidden !important;
}

.btn-primary::before, .btn-secondary::before, .btn-buy::before, .mobile-auth-login-btn::before, .mobile-auth-register-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
  z-index: 1;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .btn-buy:hover::before, .mobile-auth-login-btn:hover::before, .mobile-auth-register-btn:hover::before {
  animation: sweep 1.2s ease-in-out infinite;
}

/* Product Card Premium Hover Effects */
.product-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease !important;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 231, 235, 0.8) !important;
}

/* Navigation Link Animation */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Keyframe animations */
@keyframes sweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

@keyframes loader-logo-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(255, 102, 0, 0.5));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 35px rgba(255, 102, 0, 0.85));
  }
}

@keyframes hud-spin-cw {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hud-spin-ccw {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes loader-text-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; text-shadow: 0 0 12px var(--accent-cyan); }
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(15, 12, 27, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.logo img {
  height: 36px;
}

.logo-icon {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.4));
  transition: var(--transition);
}

.logo:hover .logo-icon {
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 0 15px var(--primary));
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 12px;
  transition: var(--transition);
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255, 102, 0, 0.15);
  box-shadow: inset 0 0 10px rgba(255, 102, 0, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.nav-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.nav-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #ef4444, #f43f5e);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  border: 2px solid var(--bg-dark);
}

.auth-buttons {
  display: flex;
  gap: 0.8rem;
}

.btn {
  padding: 0.65rem 1.4rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-muted);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5), 0 0 10px rgba(59, 130, 246, 0.3);
}

/* User Logged-in Button */
.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.user-menu-btn:hover {
  background: rgba(255, 102, 0, 0.18);
  border-color: var(--primary);
  box-shadow: var(--glow-purple);
}

.user-menu-btn img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.user-menu-btn span {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

/* Page Frame/Layout */
main {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 2rem;
  min-height: 70vh;
}

.page-view {
  display: none;
}

.page-view.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HOME PAGE STYLING */
/* Top Slideshow Banner 3:1 */
.slideshow-banner-container {
  width: 100%;
  aspect-ratio: 3 / 1;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.slideshow-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slideshow-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Quick Features Row */
.features-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.15);
}

.feature-icon-container {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card.purple .feature-icon-container { background: rgba(255, 102, 0, 0.15); color: var(--primary); box-shadow: 0 0 15px rgba(255, 102, 0, 0.2); }
.feature-card.blue .feature-icon-container { background: rgba(59, 130, 246, 0.15); color: var(--secondary); box-shadow: 0 0 15px rgba(59, 130, 246, 0.2); }
.feature-card.green .feature-icon-container { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }
.feature-card.orange .feature-icon-container { background: rgba(245, 158, 11, 0.15); color: #f59e0b; box-shadow: 0 0 15px rgba(245, 158, 11, 0.2); }
.feature-card.pink .feature-icon-container { background: rgba(255, 102, 0, 0.15); color: #ff6600; box-shadow: 0 0 15px rgba(255, 102, 0, 0.2); }

.feature-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Grid Banners 2 rows of 4 (16:9) */
.banners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.grid-banner {
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.grid-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.grid-banner:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--glow-purple);
}

.grid-banner:hover img {
  transform: scale(1.1);
}

/* Products Section */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-header h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-header a, .section-header button {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.section-header a:hover {
  color: white;
  text-shadow: var(--glow-purple);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4), var(--glow-purple);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.discount-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ef4444, #f43f5e);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(239, 68, 68, 0.4);
}

.product-details {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  height: 2.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-container {
  display: flex;
  flex-direction: column;
}

.old-price {
  color: var(--text-dark);
  text-decoration: line-through;
  font-size: 0.85rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.discounted-price {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-buy {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-buy:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.4);
}

/* Product card dual buttons */
.product-card-btns {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-buy-now {
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-buy-now:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.45);
}

.btn-cart {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-cart:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.35);
}

/* Category Slider/Grid */
.categories-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  scrollbar-width: thin;
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.category-pill:hover, .category-pill.active {
  background: rgba(255, 102, 0, 0.12);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

.category-pill i {
  font-size: 1.1rem;
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.news-card {
  background: rgba(21, 16, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 102, 0, 0.2);
}

.news-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover .news-img {
  transform: scale(1.08);
}

.news-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.news-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.news-date, .news-readtime {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  color: white;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.5rem;
}

.news-card:hover .news-title {
  color: var(--primary);
}

.news-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 4.3rem;
}

.news-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  display: flex;
  align-items: center;
}

.news-readmore {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.news-readmore i {
  transition: transform 0.3s ease;
}

.news-card:hover .news-readmore {
  color: white;
  text-shadow: var(--glow-purple);
}

.news-card:hover .news-readmore i {
  transform: translateX(5px);
}

/* MODALS */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 5, 15, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 90%;
  max-width: 480px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), var(--glow-purple);
  position: relative;
  transform: translateY(-20px);
  transition: var(--transition);
  max-height: 90vh;
  overflow-y: auto;
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;  /* Firefox */
}

.modal-content::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}


.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: #fff;
  transform: scale(1.1);
}

.modal h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* FORMS */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px dashed var(--border-color);
  padding: 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.form-file-label:hover {
  border-color: var(--primary);
  background: rgba(255, 102, 0, 0.03);
}

.form-file-input {
  display: none;
}

.gender-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gender-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.gender-btn.active {
  background: rgba(255, 102, 0, 0.15);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.1);
}

/* USER NAVIGATION SIDE DRAWER (Slide-in from right) */
#user-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 360px;
  height: 100vh;
  background: rgba(15, 12, 27, 0.95);
  backdrop-filter: blur(15px);
  border-left: 1px solid var(--border-color);
  z-index: 1500;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

#user-drawer.active {
  right: 0;
}

.drawer-footer-mobile {
  display: none;
}

.drawer-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.close-drawer {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

.drawer-user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.drawer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: var(--glow-purple);
}

.drawer-user-details h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
}

.drawer-user-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.drawer-balance-card {
  margin: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.drawer-balance-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.drawer-balance-amount {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 0.5rem 0;
  font-family: 'Outfit', sans-serif;
}

.drawer-menu {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}

.drawer-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: white;
}

.drawer-item i {
  font-size: 1.1rem;
  width: 24px;
}

.drawer-divider {
  height: 1px;
  background: var(--border-color);
  margin: 1rem 0;
}

.drawer-logout {
  color: #ef4444;
}

.drawer-logout:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #f87171;
}

/* BACKDROP */
#drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1400;
  display: none;
  backdrop-filter: blur(4px);
}

#drawer-backdrop.active {
  display: block;
}

/* CHAT SUPPORT WIDGET (Bottom Right) */
#chat-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

#chat-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.5);
  transition: var(--transition);
}

#chat-trigger:hover {
  transform: rotate(15deg) scale(1.08);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.7);
}

#chat-window {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 380px;
  height: 550px;
  background: rgba(13, 10, 29, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255, 102, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}

#chat-window.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-banner {
  height: 100px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

.chat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 12, 27, 0.4) 0%, rgba(15, 12, 27, 0.8) 100%);
  display: flex;
  align-items: center;
  padding: 1rem;
}

.chat-banner-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
  letter-spacing: 0.5px;
}

.chat-banner-info p {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 500;
}

.chat-body {
  flex-grow: 1;
  padding: 1.25rem 0.75rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(10, 8, 22, 0.2);
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.chat-body::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.chat-welcome-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  gap: 1.25rem;
}

.chat-welcome-screen i {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3));
}

.chat-welcome-screen h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.chat-welcome-screen p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 85%;
  line-height: 1.5;
}

.chat-history-container {
  max-height: 180px;
  width: 100%;
  overflow-y: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.chat-history-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.chat-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.chat-history-item:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(255, 102, 0, 0.3);
  transform: translateX(3px);
}

.chat-history-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
}

.chat-history-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Chat Messages Super Premium */
.message {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  animation: bubbleSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes bubbleSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.message.user {
  align-self: flex-end;
  align-items: flex-end;
}

.message.admin, .message.bot {
  align-self: flex-start;
  align-items: flex-start;
}

.message.system {
  align-self: center;
  align-items: center;
  max-width: 90%;
  text-align: center;
}

.message-bubble {
  padding: 0.8rem 1rem;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.message.user .message-bubble {
  background: linear-gradient(135deg, var(--primary), #ff8533);
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 15px rgba(229, 231, 235, 0.8);
}

.message.admin .message-bubble {
  background: rgba(255, 255, 255, 0.06);
  color: #f3f4f6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.message.bot .message-bubble {
  background: rgba(255, 255, 255, 0.06);
  color: #f3f4f6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.message.system .message-bubble {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.75rem;
}

.message-img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 6px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.message-img:hover {
  transform: scale(1.02);
  border-color: var(--primary);
}

.message-time {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  font-weight: 400;
}

.message.user .message-time {
  align-self: flex-end;
}

.message.admin .message-time, .message.bot .message-time {
  align-self: flex-start;
}

.chat-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 12, 28, 0.6);
}

.chat-footer input[type="text"] {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0.6rem 1rem;
  color: white;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.chat-footer input[type="text"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(229, 231, 235, 0.8);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.chat-action-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1.15rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.chat-action-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.chat-action-btn.attachment:hover {
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
}

.chat-action-btn.send {
  color: var(--primary);
}

.chat-action-btn.send:hover {
  background: rgba(255, 102, 0, 0.15);
  color: #ff6600;
}

/* Rating Screen */
.rating-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  gap: 1.5rem;
}

.rating-screen h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.stars {
  display: flex;
  gap: 0.5rem;
}

.star {
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.star:hover, .star.active {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

/* ABOUT & FAQS PAGES */
.about-hero {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(0deg, var(--bg-darker) 0%, rgba(255, 102, 0, 0.05) 100%);
  border-radius: 16px;
  margin-bottom: 3rem;
}

.about-hero h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-hero p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.about-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
}

.faq-header i {
  transition: var(--transition);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-body {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-body {
  display: block;
}

/* FOOTER */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-links-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dark);
  font-size: 0.85rem;
}

/* ADMIN PANEL STYLING */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background-color: var(--bg-darker);
}

.admin-sidebar {
  width: var(--sidebar-width);
  background: var(--bg-dark);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  position: fixed;
  height: 100vh;
  z-index: 100;
}

.admin-logo {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-logo img {
  height: 30px;
}

.admin-menu {
  list-style: none;
  flex-grow: 1;
  overflow-y: auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-menu-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.admin-menu-item a:hover, .admin-menu-item.active a {
  background: rgba(255, 102, 0, 0.12);
  color: white;
}

.admin-menu-item a span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-menu-item a i {
  font-size: 1.05rem;
  width: 20px;
}

.admin-badge {
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
}

.admin-main {
  margin-left: var(--sidebar-width);
  flex-grow: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  height: 70px;
  background: rgba(15, 12, 27, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 90;
}

.admin-topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-user img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
}

.admin-user-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
}

.admin-user-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.admin-content {
  padding: 2rem;
  flex-grow: 1;
}

/* Dashboard Stats Cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
}

.admin-stat-card.purple .admin-stat-icon { color: var(--primary); border-color: rgba(255, 102, 0, 0.2); background: rgba(255, 102, 0, 0.05); }
.admin-stat-card.blue .admin-stat-icon { color: var(--secondary); border-color: rgba(59, 130, 246, 0.2); background: rgba(59, 130, 246, 0.05); }
.admin-stat-card.green .admin-stat-icon { color: var(--accent-green); border-color: rgba(16, 185, 129, 0.2); background: rgba(16, 185, 129, 0.05); }
.admin-stat-card.orange .admin-stat-icon { color: #f59e0b; border-color: rgba(245, 158, 11, 0.2); background: rgba(245, 158, 11, 0.05); }
.admin-stat-card.pink .admin-stat-icon { color: #ff6600; border-color: rgba(255, 102, 0, 0.2); background: rgba(255, 102, 0, 0.05); }

.admin-stat-info h6 {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.admin-stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 2px;
}

/* Charts & Lists layout */
.admin-charts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.admin-panel-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.admin-panel-card-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Custom Line Graph Visual (SVG or simple CSS) */
.custom-chart-container {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 20px;
}

.custom-chart-grid {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.chart-grid-line {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
  width: 100%;
}

.custom-chart-bars {
  width: 100%;
  height: calc(100% - 20px);
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  z-index: 1;
}

.chart-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  width: 10%;
}

.chart-bar {
  width: 12px;
  background: linear-gradient(to top, var(--primary), var(--secondary));
  border-radius: 6px;
  animation: heightGrow 1s ease;
  position: relative;
}

.chart-bar:hover::after {
  content: attr(data-val);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.chart-bar-label {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

@keyframes heightGrow {
  from { height: 0; }
}

/* Pie Chart visualization */
.pie-chart-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  height: 200px;
}

.pie-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-green) 0% 65%,
    #f59e0b 65% 85%,
    #ef4444 85% 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pie-circle::after {
  content: '3,746';
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.pie-labels {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pie-label-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.pie-color-box {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.pie-color-box.green { background: var(--accent-green); }
.pie-color-box.orange { background: #f59e0b; }
.pie-color-box.red { background: #ef4444; }

/* Tables in Admin */
.admin-table-container {
  overflow-x: auto;
  margin-top: 1rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  padding: 0.9rem 1.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
  font-weight: 700;
}

.admin-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.admin-table tbody tr:hover {
  background: rgba(255,255,255,0.01);
}

.admin-table img.table-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

/* Status Tags */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-pill.success { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); border: 1px solid rgba(16, 185, 129, 0.2); }
.status-pill.warning { background: rgba(245, 158, 11, 0.1); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.2); }
.status-pill.danger { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }

/* Admin Chat Interface */
.admin-chat-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  height: calc(100vh - 180px);
}

.admin-chat-list {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.admin-chat-list-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  font-weight: 700;
}

.admin-chat-user-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.admin-chat-user-item:hover, .admin-chat-user-item.active {
  background: var(--bg-card-hover);
}

.admin-chat-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.admin-chat-user-details h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

.admin-chat-user-details p {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.admin-chat-window {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-chat-window-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-chat-window-header h4 {
  font-size: 1rem;
  font-weight: 700;
}

.admin-chat-messages {
  flex-grow: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-chat-footer {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-chat-footer input[type="text"] {
  flex-grow: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: white;
}

/* Configurable elements styling */
.admin-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.admin-form-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

/* Banner management preview image grid */
.banner-edit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.banner-edit-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.banner-edit-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

/* Receipt Preview Modal */
.receipt-preview-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-top: 1rem;
}

/* MOBILE DESIGN ADJUSTMENTS */
@media (max-width: 1024px) {
  .admin-sidebar {
    width: 70px;
  }
  .admin-sidebar .admin-logo span,
  .admin-sidebar .admin-menu-item span span,
  .admin-sidebar .admin-menu-item .admin-badge {
    display: none;
  }
  .admin-main {
    margin-left: 70px;
  }
  .admin-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  .nav-links {
    display: none; /* Can be customized to show inside drawer or mobile nav */
  }
  .video-banner-container {
    aspect-ratio: 2 / 1;
  }
  .video-overlay {
    padding: 1rem;
  }
  .video-content h2 {
    font-size: 1.8rem;
  }
  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-charts-grid {
    grid-template-columns: 1fr;
  }
  .admin-chat-grid {
    grid-template-columns: 1fr;
  }
  .admin-chat-list {
    height: 200px;
  }
  #user-drawer {
    width: 100vw;
    right: -100vw;
  }
  #chat-window {
    width: calc(100vw - 40px);
    height: 480px;
  }
}

/* ========================================== */
/* NEW PREMIUM DESIGN EXPANSION CLASSES       */
/* ========================================== */

/* PixoPay Animated Balance Card */
.paycard-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  perspective: 1000px;
}

.paycard {
  width: 350px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.4) 0%, rgba(59, 130, 246, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.2), 0 0 15px rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
  cursor: pointer;
}

.paycard:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3), 0 0 25px rgba(59, 130, 246, 0.3);
}

.paycard::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  transform: rotate(30deg);
  pointer-events: none;
}

.paycard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paycard-brand {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, white, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.paycard-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.paycard-chip::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
}

.paycard-balance-section {
  margin-top: 1rem;
}

.paycard-balance-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.paycard-balance-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-top: 4px;
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.paycard-holder-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.paycard-holder-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  font-family: monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Glassmorphic Profile Card */
.profile-card-container {
  display: flex;
  justify-content: center;
  perspective: 1000px;
  margin-top: 1rem;
}

.profile-card {
  width: 100%;
  max-width: 450px;
  background: linear-gradient(135deg, rgba(25, 20, 44, 0.85) 0%, rgba(15, 12, 27, 0.95) 100%);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--glow-purple);
  text-align: center;
  transition: transform 0.5s, border-color 0.5s, box-shadow 0.5s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.profile-card:hover {
  transform: scale(1.02) rotateY(-3deg);
  border-color: var(--accent-cyan);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(6, 182, 212, 0.3);
}

.profile-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), transparent);
  pointer-events: none;
}

/* Product Detail & Reviews Styling */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-detail-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--glow-purple);
  object-fit: cover;
}

.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-info-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.product-info-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.product-info-meta span strong {
  color: white;
}

.product-info-price-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.product-info-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

.product-info-price-old {
  font-size: 1.4rem;
  color: var(--text-dark);
  text-decoration: line-through;
}

.product-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.product-like-btn {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.product-like-btn.liked {
  background: #ef4444;
  color: white;
}

/* Reviews List Styles */
.reviews-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  display: flex;
  gap: 1.5rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.review-content-col {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.review-img {
  max-width: 150px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-top: 8px;
}

/* Star Rating Selector Form */
.star-rating-selector {
  display: flex;
  gap: 0.5rem;
}

.star-rating-selector span {
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.star-rating-selector span:hover,
.star-rating-selector span.active {
  color: #fbbf24;
}

/* Dynamic Notification View Styling */
.notif-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
}

.notif-item:hover {
  transform: translateX(3px);
  border-color: rgba(255, 102, 0,0.3);
}

.notif-item.unread {
  background: rgba(255, 102, 0, 0.05);
  border-color: rgba(255, 102, 0, 0.2);
}

.notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.03);
}

.notif-item.unread .notif-icon {
  background: rgba(255, 102, 0, 0.15);
  color: var(--primary);
}

/* Mobile Sticky Bottom Navbar — Premium Floating Island */
.mobile-bottom-navbar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 420px;
  height: 64px;
  background: rgba(10, 8, 22, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 102, 0, 0.22);
  border-radius: 28px;
  z-index: 999;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 0 6px;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 600;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  transition: var(--transition);
  position: relative;
  min-width: 0;
  flex: 1;
}

.mobile-nav-icon-wrap {
  position: relative;
  width: 34px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav-item i {
  font-size: 1.15rem;
  transition: all 0.25s ease;
}

.mobile-nav-active-dot {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px var(--primary);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav-item:hover .mobile-nav-icon-wrap,
.mobile-nav-item.active .mobile-nav-icon-wrap {
  background: rgba(255, 102, 0, 0.18);
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: var(--primary);
}

.mobile-nav-item.active .mobile-nav-icon-wrap {
  background: rgba(255, 102, 0, 0.22);
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.3);
}

.mobile-nav-item.active .mobile-nav-active-dot {
  transform: translateX(-50%) scale(1);
}

.mobile-nav-item.active i {
  color: var(--primary);
  filter: drop-shadow(0 0 6px rgba(255, 102, 0, 0.6));
  transform: translateY(-1px);
}

/* Center search button */
.mobile-nav-center {
  flex-shrink: 0;
}

.mobile-nav-center-btn {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.5), 0 0 0 3px rgba(255, 102, 0, 0.15);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: -12px;
}

.mobile-nav-center-btn i {
  color: white !important;
}

.mobile-nav-center-btn:hover,
.mobile-nav-center:hover .mobile-nav-center-btn {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.65), 0 0 0 4px rgba(255, 102, 0, 0.2);
}

/* Fullscreen support chat on mobile */
@media (max-width: 768px) {
  .mobile-bottom-navbar {
    display: flex;
  }
  
  body {
    padding-bottom: 90px; /* Leave room for floating mobile navbar */
  }

  /* Partners cards - 2 columns on mobile */
  .partners-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }
  .partner-card {
    padding: 0.85rem 0.9rem !important;
    border-radius: 14px !important;
  }
  .partner-card-icon-wrap {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
    border-radius: 10px !important;
  }
  .partner-card-body h4 {
    font-size: 0.82rem !important;
  }
  .partner-card-body p {
    font-size: 0.68rem !important;
  }
  .partners-hero h2 {
    font-size: 1.5rem !important;
  }
  .partners-hero p {
    font-size: 0.82rem !important;
  }
  .partners-stores-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Chat Window Fullscreen layout */
  #chat-window.fullscreen-chat {
    width: 100vw !important;
    height: 100% !important;
    max-height: 100% !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    z-index: 100000 !important;
  }

  .fullscreen-chat .chat-body {
    height: auto !important;
    flex-grow: 1 !important;
  }
}

@media (max-width: 480px) {
  .features-row {
    grid-template-columns: 1fr;
  }
  .banners-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  .banner-edit-grid {
    grid-template-columns: 1fr;
  }
  
  /* Gamer ID Card Mobile stack */
  .gamer-id-card {
    aspect-ratio: auto !important;
    height: auto !important;
    padding: 1rem !important;
  }
  .gamer-id-card .card-body {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: center !important;
    text-align: center !important;
  }
  .gamer-id-card .card-photo-sec img {
    width: 80px !important;
    height: 80px !important;
  }
  .gamer-id-card .card-info-sec {
    width: 100% !important;
    align-items: center !important;
  }
  .gamer-id-card .info-field {
    align-items: center !important;
  }
  .gamer-id-card .info-field .value {
    max-width: 100% !important;
    text-align: center !important;
  }
  .gamer-id-card .barcode-container {
    display: none !important;
  }
  .gamer-id-card .card-footer {
    justify-content: center !important;
    margin-top: 1rem !important;
  }

  /* Extra compact Wallet card for small screens */
  .paycard {
    max-width: 275px !important;
    height: 155px !important;
    padding: 1rem !important;
  }
  .paycard-balance-val {
    font-size: 1.35rem !important;
  }
}

/* ========================================== */
/* EXPANDED DESIGNS                           */
/* ========================================== */

/* Animated Floating Ambient Pink/Purple Orbs */
@keyframes ambient-orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, -50px) scale(1.2); }
}

@keyframes ambient-orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 60px) scale(1.15); }
}

@keyframes ambient-orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 40px) scale(1.1); }
}

body.light-mode::before,
body.light-mode::after {
  display: none !important;
}

body.light-mode::before {
  top: -120px;
  left: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.45) 0%, rgba(229, 231, 235, 0.8) 60%, transparent 80%);
  animation: ambient-orb-float-1 20s ease-in-out infinite;
}

body.light-mode::after {
  bottom: -150px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.45) 0%, rgba(255, 133, 51, 0.25) 60%, transparent 80%);
  animation: ambient-orb-float-2 24s ease-in-out infinite;
}

/* Light Mode Master Token System */
body.light-mode {
  --bg-darker: #ffffff;
  --bg-dark: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f9fafb;
  --primary: #ff6600;
  --primary-glow: rgba(229, 231, 235, 0.8);
  --secondary: #ff7700;
  --secondary-glow: rgba(229, 231, 235, 0.8);
  --accent-cyan: #ff6600;
  --accent-green: #ff7700;
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-dark: #6b7280;
  --border-color: #e5e7eb;
  --border-focus: rgba(255, 102, 0, 0.5);
  background-color: #ffffff !important;
  background-image: none !important;
  color: #111827 !important;
}

/* Master High-Contrast Typography & Text in Light Mode */
body.light-mode h1, body.light-mode h2, body.light-mode h3, 
body.light-mode h4, body.light-mode h5, body.light-mode h6,
body.light-mode p, body.light-mode label, body.light-mode span:not(.btn *):not(.badge *),
body.light-mode strong, body.light-mode td, body.light-mode th,
body.light-mode div:not(.btn *):not(.badge *),
body.light-mode i:not(.btn *):not(.badge *) {
  color: #111827;
}

body.light-mode a:not(.btn) {
  color: #ff6600;
}

/* Master Card & Container Glassmorphism in Light Mode */
body.light-mode .product-card, 
body.light-mode .admin-form-box, 
body.light-mode .about-card, 
body.light-mode .news-card, 
body.light-mode .modal-content, 
body.light-mode #user-drawer,
body.light-mode .build-site-form-card,
body.light-mode .exchange-calculator,
body.light-mode .ref-code-display-box,
body.light-mode .referrals-table-wrapper,
body.light-mode .task-card,
body.light-mode .partner-card,
body.light-mode .cat-card,
body.light-mode .daily-task-card,
body.light-mode .user-menu-btn,
body.light-mode .cart-item,
body.light-mode .wishlist-item,
body.light-mode .domain-choice-box,
body.light-mode .build-site-feature-item,
body.light-mode .product-detail-card,
body.light-mode .product-info-box,
body.light-mode .store-card,
body.light-mode .faq-item,
body.light-mode .banner-card,
body.light-mode .blog-card,
body.light-mode .admin-card,
body.light-mode .stat-card {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04) !important;
  color: #111827 !important;
}

/* Master Form Inputs in Light Mode */
body.light-mode .form-control, 
body.light-mode input[type="text"],
body.light-mode input[type="email"],
body.light-mode input[type="tel"],
body.light-mode input[type="number"],
body.light-mode input[type="password"],
body.light-mode textarea,
body.light-mode select {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

body.light-mode .form-control:focus,
body.light-mode input:focus,
body.light-mode textarea:focus,
body.light-mode select:focus {
  border-color: #ff6600 !important;
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.3) !important;
}

body.light-mode .form-control::placeholder,
body.light-mode input::placeholder,
body.light-mode textarea::placeholder {
  color: #6b7280 !important;
  opacity: 0.8;
}

/* Glassmorphism Header */
body.light-mode header {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

body.light-mode .nav-links a {
  color: #111827 !important;
  font-weight: 600;
}

body.light-mode .nav-links a:hover, body.light-mode .nav-links a.active {
  color: #ff6600 !important;
  background: rgba(255, 102, 0, 0.12) !important;
  border-radius: 12px;
}

body.light-mode .logo, body.light-mode .logo-icon {
  color: #ff6600 !important;
}

body.light-mode .nav-actions .nav-btn {
  background: rgba(249, 250, 251, 0.85) !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  color: #111827 !important;
}

body.light-mode .nav-actions .nav-btn:hover {
  background: rgba(255, 102, 0, 0.15) !important;
  border-color: #ff6600 !important;
  color: #ff6600 !important;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.3) !important;
}

/* Master Light Mode Overrides for Pixobot Redesign */
body.light-mode #chat-window,
body.light-mode .messages-chat-window,
body.light-mode .admin-chat-window {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  box-shadow: 0 20px 50px rgba(255, 102, 0, 0.18) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  color: #111827 !important;
}

body.light-mode .chat-left-sidebar,
body.light-mode .chat-right-sidebar,
body.light-mode .chat-main-container,
body.light-mode .chat-sidebar, 
body.light-mode .chat-main,
body.light-mode .chat-body,
body.light-mode .chat-lobby,
body.light-mode .chat-left-col,
body.light-mode .chat-right-col {
  background: rgba(255, 255, 255, 0.96) !important;
  color: #111827 !important;
  border-color: rgba(229, 231, 235, 0.8) !important;
}

body.light-mode .chat-sidebar-logo .logo-text,
body.light-mode .chat-sidebar-logo .logo-text span {
  color: #111827 !important;
}

body.light-mode .chat-sidebar-logo .logo-sub {
  color: #4b5563 !important;
}

body.light-mode .chat-menu-item,
body.light-mode .chat-sidebar-item,
body.light-mode .drawer-item {
  color: #111827 !important;
}

body.light-mode .chat-menu-item i,
body.light-mode .chat-sidebar-item i {
  color: #ff6600 !important;
}

body.light-mode .chat-menu-item:hover,
body.light-mode .chat-menu-item.active,
body.light-mode .chat-sidebar-item:hover,
body.light-mode .chat-sidebar-item.active,
body.light-mode .drawer-item:hover {
  background: rgba(255, 102, 0, 0.15) !important;
  color: #ff6600 !important;
  border-color: #ff6600 !important;
}

body.light-mode .chat-header-bot,
body.light-mode .chat-quick-cards {
  background: rgba(249, 250, 251, 0.95) !important;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8) !important;
}

body.light-mode #chat-window-bot-name,
body.light-mode .chat-lobby-history-section h4,
body.light-mode .chat-history-card h5,
body.light-mode .chat-right-card h4,
body.light-mode .chat-quick-title,
body.light-mode .chat-promo-title,
body.light-mode .security-text h5,
body.light-mode .faq-details h5,
body.light-mode .chat-right-faq-item .faq-details h5 {
  color: #111827 !important;
  font-weight: 800 !important;
}

body.light-mode .chat-quick-card,
body.light-mode .chat-right-card,
body.light-mode .chat-history-card,
body.light-mode .chat-faq-item,
body.light-mode .chat-right-faq-item,
body.light-mode .chat-promo-card {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  color: #111827 !important;
}

body.light-mode .chat-quick-card:hover,
body.light-mode .chat-right-card:hover,
body.light-mode .chat-history-card:hover,
body.light-mode .chat-faq-item:hover,
body.light-mode .chat-right-faq-item:hover,
body.light-mode .chat-promo-card:hover {
  background: rgba(255, 102, 0, 0.15) !important;
  border-color: #ff6600 !important;
}

body.light-mode .chat-quick-desc,
body.light-mode .chat-right-faq-item .faq-details p,
body.light-mode .security-text p,
body.light-mode .chat-right-card.operator-card p,
body.light-mode .chat-sidebar-footer .copyright,
body.light-mode .social-title {
  color: #4b5563 !important;
}

body.light-mode .chat-sidebar-social-icon {
  background: rgba(249, 250, 251, 0.9) !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  color: #111827 !important;
}

body.light-mode .chat-bubble.bot {
  background: #f9fafb !important;
  color: #111827 !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.05) !important;
}

body.light-mode .chat-bubble.user {
  background: linear-gradient(135deg, #ff6600, #ff6600) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3) !important;
}

body.light-mode .chat-footer {
  border-top: 1px solid rgba(255, 102, 0, 0.2) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

body.light-mode #chat-message-input {
  color: #111827 !important;
  background: #ffffff !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

body.light-mode #chat-message-input::placeholder {
  color: #6b7280 !important;
}

body.light-mode .chat-chip-btn {
  background: rgba(249, 250, 251, 0.8) !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  color: #111827 !important;
}

body.light-mode .chat-chip-btn:hover {
  background: rgba(255, 102, 0, 0.15) !important;
  color: #ff6600 !important;
}

/* Custom Toast Notifications in Light Mode */
body.light-mode .custom-toast {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  border-left: 5px solid #ff6600 !important;
  color: #111827 !important;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2) !important;
}

/* Floating Action & Theme Buttons in Light Mode */
body.light-mode .mobile-floating-theme-btn,
body.light-mode .pixo-fab-main,
body.light-mode .pixo-sub-fab,
body.light-mode .floating-btn {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  color: #111827 !important;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.2) !important;
}

body.light-mode .pixo-fab-main i,
body.light-mode .pixo-sub-fab i {
  color: #ff6600 !important;
}

/* Auth Cards & Drawers in Light Mode */
body.light-mode .mobile-auth-card,
body.light-mode .mobile-auth-overlay {
  background: rgba(255, 255, 255, 0.96) !important;
  color: #111827 !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

/* Mobile Bottom Navbar in Light Mode */
body.light-mode .mobile-bottom-navbar {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-top: 1px solid rgba(255, 102, 0, 0.2) !important;
}

body.light-mode .mobile-bottom-navbar .mobile-nav-item {
  color: #4b5563 !important;
}

body.light-mode .mobile-bottom-navbar .mobile-nav-item.active {
  color: #ff6600 !important;
}

/* Tables in Light Mode */
body.light-mode table, 
body.light-mode .referrals-table,
body.light-mode .data-table {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #111827 !important;
}

body.light-mode th, 
body.light-mode td {
  color: #111827 !important;
  border-color: rgba(255, 102, 0, 0.15) !important;
}

body.light-mode tr:hover {
  background: rgba(0, 0, 0, 0.04) !important;
}

/* Ref Code Display Box */
body.light-mode .ref-code-display-box {
  background: rgba(249, 250, 251, 0.8) !important;
  border-color: #ff6600 !important;
  color: #111827 !important;
  text-shadow: none !important;
}

/* Master Buttons in Light Mode */
body.light-mode .btn-primary,
body.light-mode .btn-buy,
body.light-mode .mobile-auth-login-btn,
body.light-mode .mobile-auth-register-btn {
  background: linear-gradient(135deg, #ff6600, #ff6600) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(255, 102, 0, 0.35) !important;
  border: none !important;
}

body.light-mode .btn-primary *,
body.light-mode .btn-buy *,
body.light-mode .mobile-auth-login-btn *,
body.light-mode .mobile-auth-register-btn * {
  color: #ffffff !important;
}

body.light-mode .btn-secondary {
  background: rgba(249, 250, 251, 0.85) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  color: #111827 !important;
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

body.light-mode .theme-toggle-btn {
  background: rgba(249, 250, 251, 0.9) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  color: #111827 !important;
}

.theme-toggle-btn:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: var(--primary);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.theme-toggle-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.theme-toggle-btn:hover .theme-toggle-icon {
  transform: rotate(360deg);
}

.icon-sun {
  color: #ff7700;
  font-size: 1.15rem;
  filter: drop-shadow(0 0 6px rgba(255, 102, 0, 0.6));
}

.icon-moon {
  color: #ff9d5c;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(255, 133, 51, 0.6));
}

body.light-mode .icon-sun {
  display: inline-block;
}
body.light-mode .icon-moon {
  display: none;
}

body:not(.light-mode) .icon-sun {
  display: none;
}
body:not(.light-mode) .icon-moon {
  display: inline-block;
}

/* Desktop theme button in navbar */
.desktop-theme-toggle {
  margin-right: 4px;
}

/* Mobile Floating Theme Button at Bottom Right */
.mobile-floating-theme-btn {
  display: none;
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 9990;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--primary);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 0 15px var(--primary-glow);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-floating-theme-btn:active {
  transform: scale(0.9);
}

@media (max-width: 768px) {
  .desktop-theme-toggle {
    display: none !important;
  }
  .mobile-floating-theme-btn {
    display: flex !important;
  }
}

/* Banner Slideshow styles */
.slideshow-banner-container {
  position: relative;
  width: 100%;
  aspect-ratio: 21/7; /* Clean 3:1 banner display ratio */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--glow-purple);
  background: #000;
}

.slideshow-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  object-fit: cover;
  z-index: 1;
}

.slideshow-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Mobile layout adjustments */
@media (max-width: 768px) {
  .features-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .feature-card {
    padding: 0.75rem !important;
    gap: 0.5rem !important;
  }
  .feature-icon-container {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.15rem !important;
  }
  .feature-info h4 {
    font-size: 0.8rem !important;
  }
  .feature-info p {
    font-size: 0.65rem !important;
  }
  #home-banners-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  #home-banners-grid .grid-banner:nth-child(n+3) {
    display: none !important;
  }
  .slideshow-banner-container {
    aspect-ratio: 16/9; /* Make slideshow fill nicely on mobile screens */
  }
}

/* Hide Category Scrollbars but keep scrolling */
.categories-row {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE 10+ */
  cursor: grab;
  user-select: none;
}
.categories-row:active {
  cursor: grabbing;
}
.categories-row::-webkit-scrollbar {
  display: none !important; /* Safari and Chrome */
}

/* Premium Custom Toast Notifications */
.custom-toast {
  position: relative;
  background: rgba(15, 12, 27, 0.9);
  border: 1px solid var(--primary);
  border-left: 5px solid var(--primary);
  box-shadow: var(--glow-purple), 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  min-width: 280px;
  max-width: 380px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
  animation: toast-slide-in 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
  backdrop-filter: blur(10px);
  z-index: 10000;
}

.custom-toast.success {
  border-color: var(--accent-green);
  border-left-color: var(--accent-green);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.custom-toast.error {
  border-color: #ef4444;
  border-left-color: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.custom-toast-icon {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-toast-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.custom-toast-close:hover {
  color: white;
}

@keyframes toast-slide-in {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Redesigned Gamer Identity Card */
.gamer-id-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 8.5/5.5; /* Golden ratio card proportions */
  background: linear-gradient(135deg, #18110b 0%, #0d0804 100%) !important;
  border: 2px solid var(--primary) !important;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.35), inset 0 0 20px rgba(255, 102, 0, 0.2) !important;
  padding: 1.5rem;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.gamer-id-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,102,0,0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
  transition: all 0.5s ease;
}

.gamer-id-card:hover {
  transform: rotateY(5deg) rotateX(5deg) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.5) !important;
}

.gamer-id-card .card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.gamer-id-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 102, 0, 0.3);
  padding-bottom: 0.5rem;
}

.gamer-id-card .card-header .logo {
  font-size: 1.25rem;
  color: #ff6600 !important;
  font-weight: 900 !important;
}

.gamer-id-card .card-title {
  font-size: 0.7rem;
  font-weight: 900;
  color: #ffaa66 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gamer-id-card .card-body {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-grow: 1;
}

.gamer-id-card .card-photo-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gamer-id-card .card-photo-sec img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  border: 2px solid var(--primary) !important;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

.gamer-id-card .gamer-rank {
  font-size: 0.65rem;
  font-weight: 800;
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.gamer-id-card .card-info-sec {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.gamer-id-card .info-field {
  display: flex;
  flex-direction: column;
}

.gamer-id-card .info-field .label {
  font-size: 0.6rem;
  color: #ffaa66 !important;
  letter-spacing: 1px;
  font-weight: 800 !important;
}

.gamer-id-card .info-field .value {
  font-size: 0.9rem;
  color: #ffffff !important;
  font-weight: 800 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 240px;
}

.gamer-id-card .status-active {
  color: var(--accent-green) !important;
  font-size: 0.75rem !important;
  text-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}

.gamer-id-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 0.5rem;
}

.gamer-id-card .barcode-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gamer-id-card .barcode {
  width: 140px;
  height: 15px;
  background: linear-gradient(90deg, 
    #fff 2px, transparent 2px, 
    #fff 5px, transparent 5px, 
    #fff 7px, transparent 7px, 
    #fff 11px, transparent 11px, 
    #fff 15px, transparent 15px
  );
  background-size: 18px 100%;
  opacity: 0.6;
}

.gamer-id-card .barcode-number {
  font-size: 0.5rem;
  color: var(--text-dark);
  font-family: monospace;
}

.gamer-id-card .chip-container {
  display: flex;
}

.gamer-id-card .gamer-chip {
  width: 32px;
  height: 24px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 4px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Dynamic 3D Neon Credit Cards */
.bank-card {
  position: relative;
  width: 220px;
  height: 140px;
  border-radius: 12px;
  padding: 1rem;
  color: white;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.bank-card:hover {
  transform: scale(1.05) rotateY(10deg);
}

.bank-card.active {
  border: 2px solid white;
  box-shadow: 0 0 20px currentColor;
  transform: scale(1.03) translateY(-4px);
}

/* Themes for cards */
.bank-card.purple {
  background: linear-gradient(135deg, #ff6600, #6366f1);
  color: #f9fafb;
}
.bank-card.cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #a5f3fc;
}
.bank-card.pink {
  background: linear-gradient(135deg, #ff6600, #f43f5e);
  color: #f9fafb;
}
.bank-card.gold {
  background: linear-gradient(135deg, #fbbf24, #b45309);
  color: #fde68a;
}
.bank-card.black {
  background: linear-gradient(135deg, #374151, #111827);
  color: #d1d5db;
}
.bank-card.red {
  background: linear-gradient(135deg, #ef4444, #991b1b);
  color: #fee2e2;
}

.bank-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bank-card-logo {
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}

.bank-card-chip {
  width: 22px;
  height: 18px;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  border-radius: 3px;
  box-shadow: inset 0 0 2px rgba(0,0,0,0.15);
}

.bank-card-number {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: white;
  margin-top: 0.5rem;
  font-family: monospace;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.bank-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

.bank-card-holder {
  font-weight: 700;
  color: white;
}

/* Wishlist toggle overlay button */
.product-card {
  position: relative;
}

.wishlist-toggle-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 12, 27, 0.6);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.wishlist-toggle-btn:hover {
  transform: scale(1.1);
  background: var(--bg-card);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.wishlist-toggle-btn.liked {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.2);
}

.theme-toggle-btn.active {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary) !important;
  box-shadow: var(--glow-purple) !important;
}

/* Glassmorphic Navbar Search */
.nav-search-container {
  position: relative;
  width: 200px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 0.5rem;
}

.nav-search-container:focus-within {
  width: 280px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  transition: var(--transition);
}

.search-input-wrapper:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 102, 0, 0.3);
}

.nav-search-container:focus-within .search-input-wrapper {
  background: rgba(15, 12, 27, 0.95);
  border-color: var(--primary);
  box-shadow: var(--glow-purple);
}

.search-icon {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-right: 0.5rem;
  transition: var(--transition);
}

.nav-search-container:focus-within .search-icon {
  color: var(--primary);
}

#nav-search-input {
  background: none;
  border: none;
  color: white;
  font-size: 0.85rem;
  width: 100%;
  outline: none;
}

#nav-search-input::placeholder {
  color: var(--text-muted);
}

#nav-search-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 0.2rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav-search-clear:hover {
  color: white;
}

/* Search Dropdown Results */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  max-height: 350px;
  background: rgba(21, 16, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow-y: auto;
  z-index: 1100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--glow-purple);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.search-result-item:hover {
  background: rgba(255, 102, 0, 0.15);
}

.search-result-item img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.search-result-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.search-result-name {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-price {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.search-no-results {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 1.5rem 0;
}

/* Seamless Loop Category Marquee (Left to Right) */
.categories-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 12px;
}

.categories-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-scroll-lr 30s linear infinite;
  padding: 0.5rem;
}

.categories-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll-lr {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Upgraded Gamer Card Cyberpunk Styles */
.card-photo-sec {
  position: relative;
}

.card-photo-edit-btn {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--primary);
  border: 1px solid var(--border-color);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
  z-index: 15;
}

.card-photo-edit-btn:hover {
  background: var(--secondary);
  transform: scale(1.15);
  box-shadow: var(--glow-purple);
}

.card-photo-edit-btn i {
  font-size: 0.75rem;
  color: white;
}

.gamer-id-card .scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%,
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 102, 0, 0.04),
    rgba(6, 182, 212, 0.01),
    rgba(59, 130, 246, 0.04)
  );
  background-size: 100% 4px, 6px 100%;
  z-index: 10;
  pointer-events: none;
  opacity: 0.15;
  animation: crt-flicker 0.15s infinite;
}

@keyframes crt-flicker {
  0% { opacity: 0.15; }
  50% { opacity: 0.18; }
  100% { opacity: 0.15; }
}

/* Store Profile View Page */
.store-profile-header-card {
  position: relative;
  background: linear-gradient(135deg, rgba(25, 18, 50, 0.8), rgba(15, 12, 27, 0.95));
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.store-profile-header-card img {
  border: 3px solid var(--primary);
  box-shadow: var(--glow-purple);
  transition: var(--transition);
}

.store-profile-header-card img:hover {
  transform: scale(1.05);
  border-color: var(--secondary);
}

/* Slideshow Banner styling */
.slideshow-banner-container {
  width: 100%;
  aspect-ratio: 3 / 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--glow-purple);
}

.slideshow-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slideshow-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Redesigned AI Chat widget styles */
.chat-header-bot {
  background: linear-gradient(135deg, rgba(20, 15, 45, 0.9), rgba(45, 20, 85, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.2rem;
  z-index: 10;
}

.bot-header-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.bot-header-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 102, 0, 0.5);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

.bot-status-details h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.status-indicator-dot {
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1px;
}

.status-indicator-dot.online {
  color: #10b981;
}

.status-indicator-dot.operator {
  color: #ff6600;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
  animation: status-pulse 1.5s infinite ease-in-out;
}

@keyframes status-pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.end-chat-icon-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.end-chat-icon-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* Chat typing indicator animation bubble */
.chat-typing-row {
  display: flex;
  margin-bottom: 0.5rem;
  padding: 0 1.25rem;
  animation: bubbleSlideUp 0.3s ease both;
}

.typing-bubble {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1rem;
  border-radius: 16px;
  border-bottom-left-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 10px;
}

.typing-dots span {
  width: 5px;
  height: 5px;
  background-color: var(--text-muted);
  border-radius: 50%;
  display: inline-block;
  animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Chat Trigger Bot Avatar and Pulse animation */
#chat-trigger {
  position: relative;
  overflow: visible;
  padding: 0;
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary);
  box-shadow: 0 5px 25px rgba(255, 102, 0, 0.6);
  background: linear-gradient(135deg, #1e1b4b, #0f0c27);
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-face-svg {
  width: 48px;
  height: 48px;
  overflow: visible;
}

/* Robot antenna blink */
@keyframes robot-antenna-blink {
  0%, 90%, 100% { opacity: 1; fill: #ff6600; }
  92%, 96% { opacity: 0.2; fill: #ff6600; }
  94%, 98% { opacity: 1; fill: #ff6600; }
}
.robot-antenna-blink {
  animation: robot-antenna-blink 3s infinite ease-in-out;
}

/* Robot left eye looking around */
@keyframes robot-left-eye {
  0%, 20%  { transform: translate(0px, 0px); }
  25%, 35% { transform: translate(-2px, 1px); }
  40%, 55% { transform: translate(2px, -1px); }
  60%, 70% { transform: translate(0px, 2px); }
  75%, 85% { transform: translate(1px, -2px); }
  90%, 100%{ transform: translate(0px, 0px); }
}
.robot-left-pupil {
  animation: robot-left-eye 4s infinite ease-in-out;
  transform-origin: 19px 25px;
}

/* Robot right eye looking around (slightly offset) */
@keyframes robot-right-eye {
  0%, 15%  { transform: translate(0px, 0px); }
  20%, 32% { transform: translate(-2px, 1px); }
  38%, 52% { transform: translate(2px, -1px); }
  58%, 68% { transform: translate(0px, 2px); }
  72%, 82% { transform: translate(1px, -2px); }
  90%, 100%{ transform: translate(0px, 0px); }
}
.robot-right-pupil {
  animation: robot-right-eye 4s 0.3s infinite ease-in-out;
  transform-origin: 37px 25px;
}

/* Robot smile wiggle (happy) */
@keyframes robot-smile-anim {
  0%, 70%, 100% { d: path("M 20 36 Q 28 42 36 36"); }
  75%, 95% { d: path("M 20 36 Q 28 44 36 36"); }
}
.robot-smile {
  animation: robot-smile-anim 5s infinite ease-in-out;
}

/* Cheek glow pulse */
@keyframes robot-cheek-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.6; fill: rgba(255, 102, 0, 0.5); }
}
.robot-cheek {
  animation: robot-cheek-pulse 2.5s infinite ease-in-out;
}

/* Robot headphones animations for organic movement */
@keyframes robot-headphones-left-anim {
  0%, 20%  { transform: translate(0px, 0px); }
  25%, 35% { transform: translate(-1px, 1px); }
  40%, 55% { transform: translate(1px, -1px); }
  60%, 70% { transform: translate(0px, 1px); }
  75%, 85% { transform: translate(0.5px, -1px); }
  90%, 100%{ transform: translate(0px, 0px); }
}
.robot-headphones-left {
  animation: robot-headphones-left-anim 4s infinite ease-in-out;
  transform-origin: 6px 26px;
}

@keyframes robot-headphones-right-anim {
  0%, 15%  { transform: translate(0px, 0px); }
  20%, 32% { transform: translate(-1px, 1px); }
  38%, 52% { transform: translate(1px, -1px); }
  58%, 68% { transform: translate(0px, 1px); }
  72%, 82% { transform: translate(0.5px, -1px); }
  90%, 100%{ transform: translate(0px, 0px); }
}
.robot-headphones-right {
  animation: robot-headphones-right-anim 4s 0.3s infinite ease-in-out;
  transform-origin: 50px 26px;
}

@keyframes robot-headphones-band-anim {
  0%, 20%  { transform: translate(0px, 0px); }
  25%, 35% { transform: translate(-0.5px, 0.5px) rotate(-1deg); }
  40%, 55% { transform: translate(0.5px, -0.5px) rotate(1deg); }
  60%, 70% { transform: translate(0px, 0.5px); }
  75%, 85% { transform: translate(0.2px, -0.5px); }
  90%, 100%{ transform: translate(0px, 0px); }
}
.robot-headphones-band {
  animation: robot-headphones-band-anim 4s infinite ease-in-out;
  transform-origin: 28px 26px;
}

.chat-trigger-pulse {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: trigger-pulse-ani 2s infinite ease-out;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}

@keyframes trigger-pulse-ani {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Category Pill Styling with Thumbnail Images */
.category-pill-img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.2);
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* ========================================== */
/* PARTNERS PAGE - PREMIUM CARDS             */
/* ========================================== */
.partners-hero {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  position: relative;
}

.partners-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 102, 0,0.2), rgba(59,130,246,0.2));
  border: 1.5px solid rgba(255, 102, 0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 20px rgba(255, 102, 0,0.25);
  animation: float-hero-icon 3.5s ease-in-out infinite;
}

@keyframes float-hero-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.partners-hero h2 {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.partners-hero p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.partners-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0 0 1.5rem;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 102, 0,0.07), rgba(59,130,246,0.07));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 102, 0,0.4);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35), 0 0 0 1px rgba(255, 102, 0,0.15);
}

.partner-card:hover::before { opacity: 1; }

.partner-card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.partner-card-body {
  flex: 1;
  min-width: 0;
}

.partner-card-body h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 2px;
}

.partner-card-body p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.partner-card-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(255, 102, 0,0.15);
  border: 1px solid rgba(255, 102, 0,0.3);
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-card-badge-gold {
  background: rgba(251,191,36,0.15);
  border-color: rgba(251,191,36,0.35);
  color: #fde68a;
}

.partner-card-badge-cyan {
  background: rgba(6,182,212,0.15);
  border-color: rgba(6,182,212,0.35);
  color: #a5f3fc;
}

/* Active stores grid on partners page */
.partners-stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.chat-back-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.1rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.chat-back-btn:hover {
  color: var(--primary) !important;
}

.chat-view {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
/* ==========================================
   FUTURISTIC AI ROBOT LOADING OVERLAY (SVG ONLY, LARGE)
   ========================================== */
.chat-futuristic-loader-view {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 450px;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.98), rgba(7, 10, 19, 0.99));
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 5;
}

.chat-futuristic-loader-view::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.15) 0%, rgba(6, 182, 212, 0.1) 40%, transparent 70%);
  animation: loaderBgRotate 10s linear infinite;
  pointer-events: none;
}

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

.chat-futuristic-loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.robot-svg-animated {
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  max-width: 420px;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.7)) drop-shadow(0 0 50px rgba(6, 182, 212, 0.6));
  animation: robotFloatLarge 3s ease-in-out infinite alternate;
}

@keyframes robotFloatLarge {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-14px) scale(1.04); }
}

body.light-mode .chat-futuristic-loader-view {
  background: radial-gradient(circle at center, #ffffff, #f1f5f9);
}

.chat-lobby-banner-container {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid rgba(255, 102, 0, 0.3);
}
.chat-lobby-banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat-lobby-actions {
  padding: 10px 15px;
}
.chat-lobby-history-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 15px 15px 15px;
}
.chat-lobby-history-section h4 {
  margin: 10px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
#chat-lobby-history-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 5px;
}
.chat-history-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 102, 0, 0.15);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-history-card:hover {
  background: rgba(255, 102, 0, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.chat-history-details {
  flex: 1;
  padding-right: 10px;
  overflow: hidden;
  text-align: left;
}
.chat-history-details h5 {
  margin: 0 0 4px 0;
  font-size: 0.85rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-history-details p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.chat-history-status-badge {
  font-size: 0.65rem;
  padding: 3px 6px;
  border-radius: 8px;
  font-weight: bold;
  white-space: nowrap;
}
.chat-history-status-badge.active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid #22c55e;
}
.chat-history-status-badge.operator_requested {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
  border: 1px solid #eab308;
}
.chat-history-status-badge.operator_active {
  background: rgba(255, 102, 0, 0.2);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.chat-history-status-badge.ended {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
  border: 1px solid #9ca3af;
}

/* Light Mode Overrides for Hardcoded White Text */
body.light-mode .user-menu-btn span {
  color: #2e1065 !important;
}
body.light-mode .user-menu-btn {
  background: rgba(249, 250, 251, 0.8);
  border: 1px solid rgba(229, 231, 235, 0.8);
  color: #2e1065 !important;
}
body.light-mode .drawer-balance-amount {
  color: #2e1065 !important;
}
body.light-mode .drawer-item {
  color: #111827 !important;
}
body.light-mode .drawer-item:hover {
  background: rgba(255, 102, 0, 0.12);
  color: #ff6600 !important;
}

/* Chatbot Light Mode Ultra-Glassmorphism & High Contrast */
body.light-mode #chat-window {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  box-shadow: 0 15px 45px rgba(255, 102, 0, 0.15) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}
body.light-mode .chat-header-bot {
  background: rgba(249, 250, 251, 0.9) !important;
  border-bottom: 1px solid rgba(255, 102, 0, 0.2) !important;
}
body.light-mode #chat-window-bot-name,
body.light-mode .chat-lobby-history-section h4,
body.light-mode .chat-history-card h5 {
  color: #2e1065 !important;
  font-weight: 700 !important;
}
body.light-mode .chat-history-card {
  background: rgba(245, 232, 255, 0.7);
  border: 1px solid rgba(255, 102, 0, 0.2);
}
body.light-mode .chat-history-card:hover {
  background: rgba(255, 102, 0, 0.12);
  border-color: #ff6600;
}
body.light-mode .chat-bubble.bot {
  background: #f3e8ff !important;
  color: #2e1065 !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.05) !important;
}
body.light-mode .chat-bubble.user {
  background: linear-gradient(135deg, #ff6600, #ff6600) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3) !important;
}
body.light-mode .chat-footer {
  border-top: 1px solid rgba(255, 102, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
}
body.light-mode #chat-message-input {
  color: #2e1065 !important;
  background: #ffffff !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}
body.light-mode #chat-message-input::placeholder {
  color: #6b7280 !important;
}
body.light-mode .chat-history-details p {
  color: #4b5563 !important;
}
body.light-mode .chat-back-btn {
  color: #2e1065 !important;
}
body.light-mode .chat-chip-btn {
  background: rgba(249, 250, 251, 0.8) !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  color: #2e1065 !important;
}
body.light-mode .chat-chip-btn:hover {
  background: rgba(255, 102, 0, 0.15) !important;
  color: #ff6600 !important;
}
}
body.light-mode .chat-history-details p {
  color: #6b7280;
}
body.light-mode .chat-back-btn {
  color: #1f2937 !important;
}

/* Animations for Products Page and Category Page Filters */
@keyframes card-fade-in {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
#products-page-grid .product-card,
#category-products-grid .product-card {
  animation: card-fade-in 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ========================================== */
/* RESPONSIVE NAVBAR & COMPACT MOBILE HEADER  */
/* ========================================== */

@media (max-width: 1200px) {
  .nav-links {
    gap: 1.25rem;
  }
  .nav-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  .nav-actions {
    gap: 0.8rem;
  }
  .nav-search-container {
    width: 140px;
  }
  .nav-search-container:focus-within {
    width: 200px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* Compact navbar and adjust gaps to prevent overlap */
  #main-header .navbar {
    padding: 0.75rem 1rem !important;
    gap: 0.5rem !important;
  }
  #main-header .nav-actions {
    gap: 0.5rem !important;
  }
  #main-header .logo img {
    height: 28px !important;
  }
  #main-header .logo-icon {
    font-size: 1.8rem !important;
  }

  /* Hide non-essential header items on mobile */
  #main-header .nav-btn[href="#news"],
  #main-header #wishlist-btn {
    display: none !important;
  }
  
  /* Ensure notifications and cart buttons stay visible at the top */
  #main-header #notify-btn,
  #main-header #cart-btn {
    display: inline-flex !important;
  }
  
  /* Hide register button in mobile header */
  #auth-area .btn[onclick*="register-modal"] {
    display: none !important;
  }
  #auth-area .btn[onclick*="login-modal"] {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
  
  /* Compact user menu button on mobile */
  .user-menu-btn span {
    display: none !important;
  }
  .user-menu-btn {
    padding: 0.3rem !important;
  }

  /* Support chat button hidden on mobile since it's integrated into bottom nav */
  #chat-trigger {
    display: none !important;
  }

  /* Products 2-column layout */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    padding: 0.5rem !important;
  }
  .product-card {
    margin-bottom: 0 !important;
  }
  .product-card-img-wrapper,
  .product-img-wrapper {
    aspect-ratio: 1/1 !important;
    height: auto !important;
  }
  .product-card-info,
  .product-details {
    padding: 0.75rem !important;
  }
  .product-card-info h4 {
    font-size: 0.85rem !important;
  }
  .product-card-footer,
  .product-price-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  .product-card-footer .btn-buy,
  .product-price-row .btn-buy {
    width: 100% !important;
    text-align: center;
    justify-content: center;
  }

  /* Grid/secondary banners 2-column layout */
  #home-banners-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  #home-banners-grid .grid-banner:nth-child(n+3) {
    display: none !important;
  }

  /* Bank cards carousel display on mobile */
  .bank-card {
    width: 250px !important;
    height: 145px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  /* Swipers and Category rows scroll */
  .categories-row {
    padding: 0.5rem !important;
    gap: 0.5rem !important;
  }

  /* Details and modal contents stack */
  .detail-grid,
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.5rem !important;
  }
  .modal-content {
    width: 95% !important;
    padding: 1.5rem !important;
  }

  /* Hide filtering on mobile products page */
  #products-view aside {
    display: none !important;
  }
  .products-page-container {
    display: block !important;
  }

  /* Premium Mobile Paycard (Wallet balance section) */
  .paycard-container {
    padding: 0 !important;
    justify-content: center !important;
  }
  .paycard {
    width: 100% !important;
    max-width: 290px !important;
    height: 165px !important;
    padding: 1.1rem !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2), 0 0 10px rgba(59, 130, 246, 0.2) !important;
  }
  .paycard-brand {
    font-size: 1.1rem !important;
  }
  .paycard-chip {
    width: 35px !important;
    height: 25px !important;
  }
  .paycard-balance-label {
    font-size: 0.7rem !important;
  }
  .paycard-balance-val {
    font-size: 1.5rem !important;
  }
  .paycard-holder-name {
    font-size: 0.85rem !important;
  }
  
  /* Quick Actions Balance history buttons full width stack on small screens */
  #balance-history-view .btn {
    flex: 1 !important;
    justify-content: center !important;
    min-width: 130px !important;
  }

  /* Top search overlay trigger button visibility */
  #main-header #search-overlay-trigger {
    display: inline-flex !important;
  }

  /* Premium Glassmorphic Search Overlay Mobile UX */
  .search-overlay-content {
    width: 95% !important;
    padding: 1.5rem !important;
    max-height: 90vh !important;
  }
  .search-overlay-title {
    font-size: 1.25rem !important;
    margin-bottom: 1rem !important;
  }
  #search-overlay-input {
    font-size: 0.95rem !important;
    padding: 0.75rem 1rem 0.75rem 2.6rem !important;
  }
  .search-overlay-icon {
    left: 12px !important;
  }
  .search-overlay-results {
    gap: 0.5rem !important;
  }
  .search-overlay-result-item {
    padding: 0.5rem 0.75rem !important;
    gap: 0.75rem !important;
  }
  .search-result-thumb {
    width: 40px !important;
    height: 40px !important;
  }
  .search-result-info h4 {
    font-size: 0.85rem !important;
  }
  .search-result-info p {
    font-size: 0.65rem !important;
  }
  .search-result-price .price {
    font-size: 0.85rem !important;
  }
  .search-result-price .old-price {
    font-size: 0.65rem !important;
  }

  /* Product details styling on card for mobile grid */
  .product-name {
    font-size: 0.9rem !important;
    height: 2.5rem !important;
  }
  .price {
    font-size: 1.05rem !important;
  }
  .old-price {
    font-size: 0.75rem !important;
  }

  /* Grids and general stacking layouts */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  #partners-list-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }
  .news-grid, #full-news-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .category-header-banner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem !important;
    gap: 1rem !important;
  }
  .store-profile-header-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem !important;
    gap: 1.5rem !important;
  }
  .store-profile-header-card img {
    width: 100px !important;
    height: 100px !important;
  }
  
  /* Footer mobile stacked layout */
  .footer-content {
    flex-direction: column !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  .footer-brand {
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  .footer-links {
    align-items: center !important;
  }
}

/* ========================================== */
/* CHATBOT FULLSCREEN & CLOSE BUTTON STYLES   */
/* ========================================== */

.chat-close-window-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-close-window-btn:hover {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  border-color: rgba(244, 63, 94, 0.5);
  color: white;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 15px rgba(244, 63, 94, 0.6);
}

.chat-close-window-btn:active {
  transform: rotate(90deg) scale(0.95);
}

.chat-close-window-btn.lobby-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.chat-close-window-btn.lobby-close:hover {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  border-color: rgba(244, 63, 94, 0.5);
}

@media (max-width: 768px) {
  #chat-widget {
    z-index: 99999 !important;
  }
  
  #chat-window {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100% !important;
    max-height: 100% !important;
    bottom: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    z-index: 100000 !important;
    transform: translateY(100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
  }
  
  #chat-window.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  
  /* Ensure the active chat window fills body viewport */
  #chat-window.active .chat-view {
    height: 100% !important;
  }
  
  #chat-window.active .chat-body {
    height: auto !important;
    flex-grow: 1 !important;
    overflow-y: auto !important;
  }

  /* Hide main page footer on mobile */
  footer {
    display: none !important;
  }

  /* Show account drawer footer on mobile */
  .drawer-footer-mobile {
    display: block !important;
  }

  /* Blog detail responsive overrides */
  .blog-detail-container {
    padding: 1.5rem !important;
    border-radius: 16px !important;
    border: 1px solid var(--border-color) !important;
    background: rgba(21, 16, 42, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    margin: 1rem 0 !important;
  }
  .blog-detail-actions {
    margin-bottom: 1.5rem !important;
  }
  .btn-blog-back, .btn-blog-share {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    flex-grow: 1 !important;
    justify-content: center !important;
  }
  .blog-detail-cover {
    aspect-ratio: 16/9 !important;
    border-radius: 12px !important;
    margin-bottom: 1.5rem !important;
  }
  .blog-detail-title {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
  }
  .blog-detail-content {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
  }
  .blog-detail-content p {
    text-align: left !important;
    margin-bottom: 1.25rem !important;
  }
  .blog-share-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
  }

  /* Single product reviews section responsive overrides */
  .reviews-section {
    padding: 1rem !important;
    border-radius: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    margin: 0 !important;
  }
}

/* ========================================== */
/* ACTIVE VIEW ROUTING TRANSITIONS            */
/* ========================================== */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.page-view.active {
  display: block !important;
  animation: slideInFromRight 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ========================================== */
/* PROFILE VIEW SIDE-BY-SIDE SPLIT LAYOUT     */
/* ========================================== */
.profile-layout-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  padding: 1rem 0;
}
.profile-edit-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.profile-edit-section h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  font-weight: 700;
}
.profile-edit-form .form-group {
  margin-bottom: 1.25rem;
}
.profile-edit-form label {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.profile-edit-form input,
.profile-edit-form textarea {
  background: var(--bg-darker) !important;
  border: 1px solid var(--border-color) !important;
  color: #fff !important;
  transition: all 0.3s ease;
}
.profile-edit-form input:focus,
.profile-edit-form textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: var(--glow-purple) !important;
}
@media (max-width: 992px) {
  .profile-layout-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================== */
/* CENTRALIZED GLASSMORPHIC SEARCH OVERLAY    */
/* ========================================== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.search-overlay-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.search-overlay-content {
  position: relative;
  width: 90%;
  max-width: 650px;
  background: rgba(18, 18, 26, 0.95);
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--glow-purple);
  transform: scale(0.9);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}
.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.search-overlay.active .search-overlay-content {
  transform: scale(1);
}
.search-overlay.closing {
  opacity: 0;
}
.search-overlay.closing .search-overlay-content {
  transform: scale(0.9);
}
.search-overlay-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-overlay-close-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}
.search-overlay-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.search-overlay-input-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}
.search-overlay-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.1rem;
}
#search-overlay-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
#search-overlay-input:focus {
  border-color: var(--primary);
  box-shadow: var(--glow-purple);
  outline: none;
}
.search-overlay-results {
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-right: 5px;
}
.search-overlay-results::-webkit-scrollbar {
  width: 4px;
}
.search-overlay-results::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* Results Item Animation */
@keyframes fadeInUpResult {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-overlay-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUpResult 0.3s ease forwards;
  opacity: 0;
}
.search-overlay-result-item:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--primary);
  transform: translateX(5px);
}
.search-result-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}
.search-result-info {
  flex-grow: 1;
}
.search-result-info h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
  font-weight: 700;
}
.search-result-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.search-result-price {
  text-align: right;
  display: flex;
  flex-direction: column;
}
.search-result-price .old-price {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.search-result-price .price {
  font-size: 0.95rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

/* ========================================== */
/* PREMIUM BLOG DETAIL PAGE STYLES           */
/* ========================================== */
.blog-detail-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 3rem;
  background: rgba(21, 16, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.blog-detail-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-blog-back {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-blog-back:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-muted);
  transform: translateX(-3px);
}

.btn-blog-share {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-blog-share:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

.blog-detail-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.blog-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(7, 5, 15, 0.6));
}

.blog-detail-meta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-detail-category {
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.blog-detail-meta-items {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.blog-meta-item {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-detail-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
  color: white;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 50%, #d1d5db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-detail-content {
  color: #e5e7eb;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: -0.011em;
  margin-bottom: 3.5rem;
}

.blog-detail-content p {
  margin-bottom: 1.75rem;
  text-align: justify;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.blog-detail-content h2, 
.blog-detail-content h3, 
.blog-detail-content h4 {
  color: white;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.blog-detail-content h2 {
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

.blog-detail-content h3 {
  font-size: 1.5rem;
}

.blog-detail-content h4 {
  font-size: 1.25rem;
}

.blog-detail-content blockquote {
  border-left: 4px solid var(--primary);
  background: rgba(255, 102, 0, 0.05);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-main);
  box-shadow: inset 0 0 15px rgba(255, 102, 0, 0.02);
}

.blog-detail-content ul.blog-content-list {
  margin: 1.5rem 0 1.5rem 2rem;
  list-style-type: square;
}

.blog-detail-content ul.blog-content-list li {
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

.blog-detail-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.5rem;
  margin-top: 3rem;
}

.blog-share-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-share-bottom span {
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.blog-share-icons {
  display: flex;
  gap: 0.75rem;
}

.blog-share-icons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.blog-share-icons button:hover {
  background: rgba(255, 102, 0, 0.1);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

/* ========================================== */
/* CATEGORIES PAGE GRID & DETAIL CARDS        */
/* ========================================== */
.categories-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.category-page-card {
  background: rgba(21, 16, 42, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.category-page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.12), rgba(59, 130, 246, 0.12));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.category-page-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), var(--glow-purple);
}

.category-page-card:hover::before {
  opacity: 1;
}

.category-page-card * {
  position: relative;
  z-index: 1;
}

.category-card-img-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.category-page-card:hover .category-card-img-wrapper {
  border-color: var(--primary);
  box-shadow: var(--glow-purple);
  transform: scale(1.05);
}

.category-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-page-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

/* Product Store Badge */
.product-store-badge-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.store-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.store-badge.official {
  background: rgba(255, 102, 0, 0.12);
  border-color: rgba(229, 231, 235, 0.8);
  color: #f9fafb;
  text-shadow: 0 0 8px rgba(255, 102, 0, 0.4);
}

.store-badge.merchant {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.25);
  color: #99f6e4;
  text-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

/* Checkout Details Modal Custom Inputs Styling */
.checkout-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.checkout-detail-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkout-detail-item h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: white;
  margin: 0;
}

/* Store Badge for single product details page */
.prod-detail-store-wrapper {
  margin-bottom: 0.5rem;
}

/* Media Query Overrides for Category Grid Mobile */
@media (max-width: 768px) {
  .categories-page-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .category-page-card {
    padding: 1.75rem 1rem !important;
    gap: 0.85rem !important;
    border-radius: 16px !important;
  }
  .category-card-img-wrapper {
    width: 70px !important;
    height: 70px !important;
  }
  .category-page-card h3 {
    font-size: 1.05rem !important;
  }
}

/* ===== MOBILE HESAB AÇ BUTTON ===== */
.mobile-hesab-ac-btn {
  display: none; /* Yalnız mobilda görünür */
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  border: 1.5px solid var(--primary);
  background: linear-gradient(135deg, rgba(255, 102, 0,0.15), rgba(99,102,241,0.15));
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.mobile-hesab-ac-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 0 14px rgba(255, 102, 0,0.5);
}

/* ===== MOBILE AUTH OVERLAY ===== */
.mobile-auth-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 5, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-auth-overlay.open {
  display: flex;
  animation: overlayFadeIn 0.35s ease forwards;
}
@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-auth-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(170deg, #0f0c29 0%, #1a103a 50%, #0f0c29 100%);
  border: 1px solid rgba(255, 102, 0,0.3);
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  padding: 2.5rem 1.8rem 3rem;
  overflow: hidden;
  transform: translateY(100%);
  animation: cardSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.1s;
}
@keyframes cardSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.mobile-auth-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 102, 0,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mobile-auth-close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 102, 0,0.3);
  background: rgba(255, 102, 0,0.1);
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.mobile-auth-close:hover {
  background: rgba(255, 102, 0,0.3);
  color: white;
}

.mobile-auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.mobile-auth-logo-icon {
  font-size: 2rem;
  color: var(--primary);
  filter: drop-shadow(0 0 10px rgba(255, 102, 0,0.6));
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.mobile-auth-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: 1px;
}
.mobile-auth-logo-text span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-auth-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.mobile-auth-subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.mobile-auth-login-btn,
.mobile-auth-register-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 102, 0,0.35);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.mobile-auth-login-btn {
  background: rgba(255, 102, 0, 0.1);
}
.mobile-auth-login-btn:hover {
  background: rgba(255, 102, 0, 0.22);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 102, 0,0.3);
}

.mobile-auth-register-btn {
  background: linear-gradient(135deg, rgba(255, 102, 0,0.25), rgba(99,102,241,0.25));
  border-color: rgba(255, 102, 0,0.6);
}
.mobile-auth-register-btn:hover {
  background: linear-gradient(135deg, rgba(255, 102, 0,0.4), rgba(99,102,241,0.4));
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 102, 0,0.4);
}

.mobile-auth-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 102, 0,0.4);
}

.mobile-auth-btn-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-auth-btn-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.mobile-auth-btn-action {
  font-size: 1rem;
  color: white;
  font-weight: 700;
}

.mobile-auth-btn-arrow {
  color: rgba(255, 102, 0,0.6);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}
.mobile-auth-login-btn:hover .mobile-auth-btn-arrow,
.mobile-auth-register-btn:hover .mobile-auth-btn-arrow {
  transform: translateX(4px);
  color: var(--primary);
}

.mobile-auth-footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.mobile-auth-footer a {
  color: var(--primary);
  text-decoration: none;
}

/* ===== PRODUCT VARIANT TAGS (Sizes & Colors on detail page) ===== */
.prod-variant-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  border: 1.5px solid var(--border-color);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.prod-variant-tag:hover {
  border-color: var(--primary);
  color: white;
  background: rgba(255, 102, 0,0.12);
}
.prod-variant-tag.selected {
  border-color: var(--primary);
  background: rgba(255, 102, 0,0.25);
  color: white;
  box-shadow: 0 0 10px rgba(255, 102, 0,0.35);
}

/* ======================================================= */
/* MOBILE HEADER BUTTONS — Login state controlled by CSS   */
/* ======================================================= */

/* Both buttons hidden by default on ALL screens */
.mobile-hesab-ac-btn,
.mobile-user-btn {
  display: none;
}

/* Mobile-only rules */
@media (max-width: 768px) {
  /* === NAVBAR COMPACT === */
  .navbar {
    padding: 0.6rem 0.75rem;
    overflow: hidden;
  }
  .logo img { height: 28px; }
  .logo-icon { font-size: 1.6rem; }
  .nav-actions {
    gap: 0.3rem;
    flex-shrink: 0;
    overflow: hidden;
  }
  .nav-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  #notify-btn,
  a[href="#news"].nav-btn,
  a[href="#wishlist"].nav-btn {
    display: none !important;
  }
  #auth-area {
    display: none !important;
  }

  /* === HIDE Hesab & User buttons in top navbar on mobile === */
  .mobile-hesab-ac-btn,
  .mobile-user-btn,
  body:not(.user-logged-in) .mobile-hesab-ac-btn,
  body.user-logged-in .mobile-user-btn {
    display: none !important;
  }
}

/* Styling details for user button (avatar, name) */
.mobile-user-btn img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary);
  flex-shrink: 0;
}
.mobile-user-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 55px;
}
body.user-logged-in .mobile-user-btn:hover {
  background: linear-gradient(135deg, rgba(255, 102, 0,0.35), rgba(99,102,241,0.35));
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(255, 102, 0,0.4);
  transform: scale(1.03);
}

/* GOOGLE LOGIN BUTTON & DIVIDER */
.btn-google-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 0.8rem 1.5rem;
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.btn-google-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: 0.5s;
}
.btn-google-login:hover::before {
  left: 100%;
}
.btn-google-login:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}
.btn-google-login:active {
  transform: translateY(0);
}
.btn-google-login .google-logo {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0.7;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}
.auth-divider:not(:empty)::before {
  margin-right: .5em;
}
.auth-divider:not(:empty)::after {
  margin-left: .5em;
}

/* ==========================================================================
   SHARE & EARN (PAYLAŞ QAZAN) & FOLLOW US (BİZİ İZLƏ) STYLES
   ========================================================================== */

/* Teaser / Unauth View */
.share-earn-hero {
  text-align: center;
  padding: 3rem 1.5rem;
  background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
  border-radius: 20px;
  margin-bottom: 2rem;
}
.share-earn-hero-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
  box-shadow: var(--glow-purple);
  margin-bottom: 1.5rem;
}
.share-earn-gift-icon {
  font-size: 2.75rem;
  color: var(--primary);
  animation: bounce-slow 3s infinite ease-in-out;
}
.share-earn-hero h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: white;
}
.share-earn-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

.share-earn-teaser-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}
.teaser-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  box-shadow: var(--glow-purple);
  flex-shrink: 0;
}
.step-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}
.step-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.share-earn-auth-prompt {
  text-align: center;
  background: rgba(15, 12, 27, 0.4);
  border: 1px dashed rgba(255, 102, 0, 0.4);
  border-radius: 16px;
  padding: 1.75rem;
  max-width: 500px;
  margin: 0 auto;
}
.share-earn-auth-prompt p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Authorized View Dashboard */
.share-earn-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 1.5rem auto;
}
.share-earn-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.share-earn-card:hover {
  border-color: rgba(229, 231, 235, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.share-earn-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: white;
}
.share-earn-card-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.75rem;
}

/* Star Display and Animation */
.star-display-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  position: relative;
  margin-bottom: 1.5rem;
}
.star-animation-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes spin-glow {
  0% {
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.7));
  }
  50% {
    transform: rotate(180deg) scale(1.08);
    filter: drop-shadow(0 0 25px rgba(245, 158, 11, 0.95)) drop-shadow(0 0 40px rgba(255, 102, 0, 0.6));
  }
  100% {
    transform: rotate(360deg) scale(1);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.7));
  }
}
.hexagram-star {
  width: 100%;
  height: 100%;
  animation: spin-glow 12s infinite linear;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}
.hexagram-star:hover {
  animation-play-state: paused;
  transform: scale(1.15);
  filter: drop-shadow(0 0 35px rgba(245, 158, 11, 1)) drop-shadow(0 0 55px rgba(255, 102, 0, 0.8));
}
.star-count-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border: 2px solid var(--bg-card);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.5);
  bottom: 0px;
  min-width: 70px;
  text-align: center;
}

/* Exchange Area */
.exchange-calculator {
  background: rgba(15, 12, 27, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.25rem;
  margin-top: auto;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 0.95rem;
}
.calc-row:last-of-type {
  border-bottom: none;
}
.calc-row span {
  color: var(--text-muted);
}
.calc-row strong {
  color: white;
  font-size: 1.05rem;
}
.calc-rate-info {
  font-size: 0.76rem;
  color: var(--text-dark);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Referral code & copy link */
.ref-code-display-box {
  background: rgba(0, 0, 0, 0.04);
  border: 2px dashed rgba(255, 102, 0, 0.35);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: 2px;
  color: white;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
  box-shadow: inset 0 0 15px rgba(255, 102, 0, 0.05);
}
.ref-link-copy-container {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.ref-link-copy-container input {
  background: var(--bg-darker);
  border-color: var(--border-color);
  color: var(--text-muted);
  font-size: 0.88rem;
  cursor: default;
}
.ref-link-copy-container input:focus {
  border-color: var(--border-color);
  box-shadow: none;
}

/* Share buttons */
.share-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.share-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}
.share-btn.whatsapp { background-color: #25D366; }
.share-btn.telegram { background-color: #26A5E4; }
.share-btn.facebook { background-color: #1877F2; }

/* Follow Us View Styling */
.follow-us-hero {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 20px;
  margin-bottom: 2rem;
}
.follow-us-hero-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: var(--glow-blue);
  margin-bottom: 1.25rem;
}
.follow-us-hash-icon {
  font-size: 2.5rem;
  color: var(--secondary);
}
.follow-us-hero h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}
.follow-us-hero p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5;
}

.follow-us-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto 3rem auto;
}
.social-link-card {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  text-decoration: none;
  color: white;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.social-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--social-brand-color, var(--primary));
  opacity: 0.7;
  transition: var(--transition);
}
.social-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.04);
}
.social-link-card:hover::before {
  width: 6px;
}
.social-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 1.5rem;
  color: white;
  margin-right: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.social-card-info {
  flex-grow: 1;
}
.social-card-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: white;
}
.social-card-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.social-card-arrow {
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link-card:hover .social-card-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

/* Animations */
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .share-earn-dashboard {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .share-earn-hero h2, .follow-us-hero h2 {
    font-size: 1.85rem;
  }
}
@media (max-width: 576px) {
  .share-earn-card {
    padding: 1.5rem;
  }
  .share-buttons-grid {
    grid-template-columns: 1fr;
  }
  .follow-us-links-grid {
    grid-template-columns: 1fr;
  }
  .ref-code-display-box {
    font-size: 1.45rem;
  }
}
.auth-divider:not(:empty)::before {
  margin-right: .5em;
}
.auth-divider:not(:empty)::after {
  margin-left: .5em;
}

/* Referral Friends List Table */
.referrals-table-wrapper {
  overflow-x: auto;
  margin-top: 1rem;
}
.referrals-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.referrals-table th, 
.referrals-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}
.referrals-table th {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.referrals-table tbody tr {
  transition: var(--transition);
}
.referrals-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Status Badges */
.ref-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}
.ref-status-badge.pending {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.ref-status-badge.converted {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Flying Star Animation */
.flying-star-icon {
  position: fixed;
  z-index: 99999;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
  filter: drop-shadow(0 0 10px #f59e0b);
}

/* Pulse highlight target */
.pulse-highlight {
  animation: pulse-star 0.4s ease-out;
}
@keyframes pulse-star {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); filter: drop-shadow(0 0 20px #f59e0b); }
  100% { transform: scale(1); }
}

/* Animated Star of David Button on Mobile Header */
.mobile-share-earn-star-link {
  display: none; /* hidden on desktop */
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(30, 27, 75, 0.4);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.15);
}

.mobile-share-earn-star-link svg {
  width: 100%;
  height: 100%;
  animation: starSpinSlow 10s linear infinite, starPulse 2.5s ease-in-out infinite alternate;
}

@keyframes starSpinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes starPulse {
  0% { filter: drop-shadow(0 0 1px rgba(245, 158, 11, 0.4)); }
  100% { filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.8)); transform: scale(1.08); }
}

.mobile-share-earn-star-link:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

/* Special Share & Earn view animation when opened from mobile star button */
.page-view#share-earn-view.star-reveal-animation {
  animation: starRevealTransition 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
  transform-origin: top right;
}

@keyframes starRevealTransition {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(-180deg);
    filter: brightness(2) blur(5px);
  }
  50% {
    filter: brightness(1.5) blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: brightness(1) blur(0);
  }
}

@media (max-width: 768px) {
  .mobile-share-earn-star-link {
    display: flex !important;
  }
}

/* ======================================================== */
/* PREMIUM FEATURED PRODUCTS & BLUE BADGE STYLES            */
/* ======================================================== */

/* Keyframe Animations */
@keyframes badge-pulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(59, 130, 246, 0.6)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.9)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(59, 130, 246, 0.6)); }
}

@keyframes border-glow-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes flow-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes card-shimmer {
  0% { transform: translate(-100%, -100%) rotate(45deg); }
  80% { transform: translate(-100%, -100%) rotate(45deg); }
  100% { transform: translate(100%, 100%) rotate(45deg); }
}

/* Verified Badge styles */
.verified-badge-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: badge-pulse 2s infinite ease-in-out;
  cursor: help;
}

.verified-store-tag {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(255, 102, 0, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa !important;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.verified-store-tag i {
  color: #3b82f6;
  animation: badge-pulse 2.5s infinite;
}

/* Premium Featured Product Card */
.product-card.featured-product-card {
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  background: linear-gradient(135deg, #120e29, #1a123a) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 102, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.product-card.featured-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translate(-100%, -100%) rotate(45deg);
  transition: none;
  pointer-events: none;
  z-index: 5;
}

.product-card.featured-product-card:hover::before {
  animation: card-shimmer 2.5s infinite;
}

.product-card.featured-product-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.6) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 25px rgba(59, 130, 246, 0.4), 0 0 10px rgba(255, 102, 0, 0.4);
  background: linear-gradient(135deg, #150f33, #22154f) !important;
}

/* Featured / VIP Tag */
.vip-badge-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(90deg, #d97706, #f59e0b, #d97706);
  background-size: 200% auto;
  animation: border-glow-rotate 2s linear infinite;
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 3px 10px rgba(217, 119, 6, 0.5);
  text-transform: uppercase;
}

.vip-badge-tag i {
  font-size: 0.75rem;
  animation: badge-pulse 1.5s infinite alternate;
}

/* ======================================================== */
/* MESSAGING SYSTEM (SPLIT LAYOUT)                          */
/* ======================================================== */

.messages-layout {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  height: 650px;
  max-height: 80vh;
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.messages-sidebar {
  width: 320px;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  background: rgba(10, 8, 22, 0.5);
}

.messages-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.messages-sidebar-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.messages-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.messages-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border: 1px solid transparent;
}

.messages-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.messages-item.active {
  background: rgba(255, 102, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.2);
}

.messages-item-avatar-wrapper {
  position: relative;
}

.messages-item-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-color);
}

.messages-item.active .messages-item-avatar {
  border-color: var(--primary);
}

.messages-item-details {
  flex: 1;
  min-width: 0;
}

.messages-item-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.messages-item-name .verified-badge-glow i {
  font-size: 0.95rem;
}

.messages-item-lastmsg {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.messages-item-time {
  font-size: 0.68rem;
  color: var(--text-dark);
  position: absolute;
  top: 10px;
  right: 12px;
}

.messages-item-unread {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  position: absolute;
  right: 15px;
  bottom: 18px;
}

/* Chat window area */
.messages-chat-window {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  position: relative;
}

.chat-window-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  gap: 15px;
  padding: 2rem;
  text-align: center;
}

.chat-window-placeholder i {
  font-size: 3.5rem;
  color: var(--text-dark);
  opacity: 0.5;
}

.messages-chat-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.messages-chat-header-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.messages-chat-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary);
}

.messages-chat-header-name {
  font-weight: 700;
  color: white;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.messages-chat-header-status {
  font-size: 0.72rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.messages-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message-bubble-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 75%;
}

.message-bubble-wrapper.outgoing {
  align-self: flex-end;
  align-items: flex-end;
}

.message-bubble-wrapper.incoming {
  align-self: flex-start;
  align-items: flex-start;
}

.message-sender-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 3px;
  font-weight: 600;
}

.message-bubble {
  padding: 0.8rem 1.1rem;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: white;
  word-break: break-word;
}

.message-bubble-wrapper.outgoing .message-bubble {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.message-bubble-wrapper.incoming .message-bubble {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-bottom-left-radius: 4px;
}

.message-bubble-wrapper.system .message-bubble {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border-color);
  color: var(--text-muted);
  text-align: center;
  align-self: center;
  font-size: 0.8rem;
  border-radius: 8px;
  padding: 0.4rem 1rem;
}

.message-time {
  font-size: 0.65rem;
  color: var(--text-dark);
  margin-top: 4px;
}

.messages-chat-footer {
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.messages-chat-input {
  flex: 1;
  background: var(--bg-darker);
  border: 1px solid var(--border-color);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.messages-chat-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
}

.messages-chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.messages-chat-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.5);
}

.messages-chat-send-btn:active {
  transform: scale(0.95);
}

/* Mobile Back button */
.chat-mobile-back-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}

/* Responsive Messaging design */
@media (max-width: 768px) {
  .messages-layout {
    height: 550px;
  }
  
  .messages-sidebar {
    width: 100%;
    display: flex;
  }
  
  .messages-chat-window {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
  }
  
  .messages-layout.chat-active .messages-sidebar {
    display: none;
  }
  
  .messages-layout.chat-active .messages-chat-window {
    display: flex;
  }
  
  .chat-mobile-back-btn {
    display: inline-block;
  }
}

/* ==========================================
   DOWNLOADS PAGE & CARDS DESIGN (PREMIUM)
   ========================================== */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.download-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15), var(--glow-purple);
}

.download-card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.download-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.download-card:hover .download-card-image img {
  transform: scale(1.08);
}

.download-file-type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.download-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.75rem;
}

.download-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.4;
  font-family: 'Outfit', sans-serif;
}

.download-file-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.78rem;
}

.download-file-details .file-name {
  color: var(--text-muted);
  max-width: 65%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-file-details .file-size {
  color: var(--accent-green);
  font-weight: 700;
}

.download-desc {
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.5rem;
}

.download-btn {
  margin-top: auto;
  transition: all 0.2s ease;
}

.download-btn i {
  transition: transform 0.2s ease;
}

.download-card:hover .download-btn i {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* ==========================================
   VERIFIED BLUE BADGE GLOW EFFECTS
   ========================================== */
.verified-badge-glow i {
  color: #3b82f6 !important;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.6));
}

@keyframes badge-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   Pixogame Premium Balance Deposit Methods Styles
   ========================================================================== */

/* Deposit selector tabs */
.deposit-methods-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 4px;
  gap: 6px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.deposit-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 8px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.deposit-tab-btn i {
  font-size: 0.95rem;
}

.deposit-tab-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.deposit-tab-btn.active {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--glow-purple);
}

/* Content tab toggling animation */
.deposit-tab-content {
  display: none;
}

.deposit-tab-content.active {
  display: block;
  animation: tabFadeIn 0.4s ease;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Copy Tooltip Animation */
.copy-tooltip {
  position: absolute;
  top: -35px;
  right: 10px;
  background: var(--accent-green);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
  animation: tooltipFadeInOut 1.5s forwards ease-in-out;
  pointer-events: none;
  z-index: 10;
}

@keyframes tooltipFadeInOut {
  0% { opacity: 0; transform: translateY(5px); }
  15% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-5px); }
}


/* m10 Gradient Branding Box */
.m10-payment-box {
  background: linear-gradient(135deg, #e11d48 0%, #9f1239 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.m10-payment-box::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.m10-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.m10-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.m10-phone-wrapper {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 300px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.08);
}

.m10-phone-number {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.m10-copy-btn {
  background: white;
  border: none;
  color: #be123c;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.m10-copy-btn:hover {
  transform: scale(1.05);
  background: #f8fafc;
}

.m10-copy-btn:active {
  transform: scale(0.95);
}

/* Terminal Payment Box */
.terminal-payment-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

/* "Necə artırılır?" help pill button */
.btn-how-to-pay {
  background: rgba(0, 0, 0, 0.04);
  border: 1px dashed rgba(255, 102, 0, 0.4);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-how-to-pay:hover {
  background: rgba(255, 102, 0, 0.15);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 102, 0,0.15);
  color: white;
}

/* Terminal Images Step-by-Step Grid */
.terminal-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}

.terminal-img-wrapper {
  position: relative;
  aspect-ratio: 1.25;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
  background: #000;
  transition: var(--transition);
}

.terminal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.terminal-img-wrapper:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.terminal-img-wrapper:hover img {
  filter: brightness(0.6);
}

.terminal-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: white;
  font-size: 1.1rem;
  transition: var(--transition);
  pointer-events: none;
}

.terminal-img-wrapper:hover .terminal-img-overlay {
  opacity: 1;
}

/* Custom Styled Video Player Wrapper */
.terminal-video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #000;
  box-shadow: var(--glow-purple);
  margin-top: 5px;
}

.terminal-video-wrapper video {
  width: 100%;
  display: block;
  max-height: 300px;
  object-fit: contain;
}

/* Fullscreen Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 5, 15, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  animation: zoomEffect 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomEffect {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 25px rgba(255, 102, 0,0.15);
  border: 1px solid rgba(255,255,255,0.05);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: white;
  transform: scale(1.1);
}

/* Dynamic Badge layout */
.badge {
  display: inline-block;
  vertical-align: middle;
}

/* Mobile Responsive Adjustments for Deposit Modal */
  #terminal-card-display {
    font-size: 0.9rem !important;
  }
}

/* ==========================================
   NEW CUSTOM STYLES ADDED FOR SUPER DESIGN   
   ========================================== */

/* Custom Rotating Logo splash screen replaced by multi-panel vault loader */

/* Cheaper Product Finder UI */
.cheaper-products-section {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.cheaper-products-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cheaper-products-title i {
  color: var(--accent-green);
}
.cheaper-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.cheaper-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.cheaper-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}
.cheaper-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}
.cheaper-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cheaper-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cheaper-price {
  font-weight: 700;
  color: var(--accent-green);
}
.cheaper-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* TikTok-Style Glassmorphic Comments Drawer */
.comments-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background: rgba(15, 12, 39, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10050;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}
.comments-drawer.active {
  right: 0;
}
.comments-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 10049;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.comments-drawer-backdrop.active {
  display: block;
  opacity: 1;
}
.comments-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comments-drawer-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.comments-drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}
.comments-drawer-close:hover {
  color: #fff;
}
.comments-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.comments-drawer-footer {
  padding: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 8, 28, 0.95);
}

/* TikTok Review Card */
.tiktok-review {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.tiktok-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary);
}
.tiktok-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.tiktok-user {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.tiktok-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  word-break: break-word;
}
.tiktok-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dark);
  margin-top: 0.25rem;
}
.tiktok-action {
  cursor: pointer;
  transition: var(--transition);
}
.tiktok-action:hover {
  color: #fff;
}
.tiktok-like-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}
.tiktok-like-btn.liked {
  color: #ef4444 !important;
}
.tiktok-like-btn:hover {
  color: #ef4444;
}

/* TikTok Nested Replies */
.tiktok-replies-container {
  margin-left: 2.8rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 1px solid rgba(255,255,255,0.05);
  padding-left: 0.75rem;
}
.tiktok-reply {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
}
.tiktok-reply-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--secondary);
}
.tiktok-reply-admin-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  margin-left: 4px;
  text-transform: uppercase;
}

.tiktok-write-reply-box {
  margin-left: 2.8rem;
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

/* Drawer rating selector */
.drawer-rating-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 0.75rem;
}
.drawer-rating-star {
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}
.drawer-rating-star.active {
  color: #fbbf24;
}

/* Mobile responsiveness for comments drawer */
@media (max-width: 480px) {
  .comments-drawer {
    width: 100%;
    height: 80vh;
    bottom: -80vh;
    top: auto;
    right: 0 !important;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px 20px 0 0;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .comments-drawer.active {
    bottom: 0;
  }
}

/* App Banner */
.app-banner {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 16px;
  padding: 1.8rem 2.2rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: var(--glow-purple);
}
.app-banner-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.app-banner-icon {
  font-size: 2.6rem;
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.5));
}
.app-banner-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
  font-family: 'Outfit', sans-serif;
}
.app-banner-text p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Play Store-like styling */
.store-app-details-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}
.store-app-icon-wrap {
  width: 160px;
  height: 160px;
}
.store-app-icon {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  object-fit: cover;
}
.store-app-main-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}
.store-app-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  margin: 0;
}
.store-app-developer {
  font-size: 0.95rem;
  color: var(--accent-green);
  font-weight: 600;
  margin: 0;
}
.store-app-meta-pills {
  display: flex;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 0.6rem 0;
  margin: 0.4rem 0;
  flex-wrap: wrap;
}
.store-app-meta-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.store-app-meta-pill strong {
  font-size: 1.15rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}

/* Screenshots & Video Carousel */
.store-carousel-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}
.store-media-scroll {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.store-media-item {
  height: 300px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  object-fit: cover;
  flex-shrink: 0;
}
.store-video-item {
  height: 300px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: #000;
  flex-shrink: 0;
}

/* Reviews grid */
.store-reviews-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.store-reviews-rating {
  text-align: center;
}
.store-reviews-big-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

/* Other Platforms Footer Section */
.store-other-platforms {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}
.store-other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.store-other-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.store-other-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--glow-purple);
}
.store-other-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}
.store-other-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.store-other-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.store-other-type {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.store-other-btn {
  margin-top: 0.5rem;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
  width: fit-content;
}
.store-other-btn.preorder {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}
.store-other-btn.buy {
  background: var(--primary);
  color: white;
}
.store-other-btn.download {
  background: var(--accent-green);
  color: white;
}

@media (max-width: 768px) {
  .store-app-details-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .store-app-meta-pills {
    justify-content: center;
  }
  .store-reviews-summary {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   NEW CUSTOM STYLES: BUILD YOUR OWN STORE SERVICE
   =================================================== */

.store-build-promo-card {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(59, 130, 246, 0.08)) !important;
  border: 1px solid rgba(6, 182, 212, 0.25) !important;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.03);
  transition: var(--transition);
}
.store-build-promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.5) !important;
}

.build-site-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.build-site-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.build-site-feature-item {
  display: flex;
  gap: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition);
}

.build-site-feature-item:hover {
  transform: translateX(5px);
  border-color: var(--accent-cyan);
}

.build-site-feature-icon {
  font-size: 2.2rem;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 5px rgba(6, 182, 212, 0.5));
}

.build-site-feature-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
  font-family: 'Outfit', sans-serif;
}

.build-site-feature-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.build-site-form-card {
  background: rgba(15, 12, 39, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.build-site-form-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.domain-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.domain-choice-box {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.01);
}

.domain-choice-box.active {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.25);
}

.domain-choice-box i {
  font-size: 1.6rem;
  color: var(--text-dark);
}

.domain-choice-box.active i {
  color: var(--accent-cyan);
}

.domain-choice-box span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.domain-choice-box.active span {
  color: #fff;
}

.dynamic-price-badge {
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.dynamic-price-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-cyan);
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

/* Success animation checkmark */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  display: block;
}

.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid var(--accent-green);
}

.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: var(--accent-green);
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  box-sizing: content-box;
  border: 4px solid rgba(16, 185, 129, .2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}

.success-checkmark .check-icon .icon-fix {
  top: 8px;
  left: 28px;
  width: 5px;
  height: 45px;
  position: absolute;
  z-index: 1;
}

@keyframes icon-line-tip {
  0% { width: 0; left: 1px; top: 19px; }
  54% { width: 0; left: 1px; top: 19px; }
  70% { width: 50px; left: -8px; top: 37px; }
  84% { width: 17px; left: 21px; top: 48px; }
  100% { width: 25px; left: 14px; top: 46px; }
}

@keyframes icon-line-long {
  0% { width: 0; right: 46px; top: 54px; }
  65% { width: 0; right: 46px; top: 54px; }
  84% { width: 55px; right: 0px; top: 35px; }
  100% { width: 47px; right: 8px; top: 38px; }
}

@media (max-width: 768px) {
  .build-site-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .domain-choices {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   NEW CUSTOM STYLES: FAB, HOURS, WHEEL & PROMO CODES
   =================================================== */

.store-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: middle;
}
.store-status-badge.open {
  background: rgba(16, 185, 129, 0.12) !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
  color: #10b981 !important;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
}
.store-status-badge.closed {
  background: rgba(239, 68, 68, 0.12) !important;
  border: 1px solid rgba(239, 68, 68, 0.4) !important;
  color: #ef4444 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

.verified-badge-glow i {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.verified-badge-glow i:hover {
  transform: scale(1.25);
  filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.8));
}

/* FAB FLOATING TRIGGER BUTTON */
.pixo-fab-container {
  position: fixed;
  bottom: 95px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 15px;
}

.pixo-main-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(15, 12, 39, 0.85));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 0;
  overflow: hidden;
}
.pixo-main-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
}

.pixo-main-fab img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  animation: rotate-pause 6s infinite ease-in-out;
}

@keyframes rotate-pause {
  0% { transform: rotate(0deg); }
  12% { transform: rotate(360deg); }
  100% { transform: rotate(360deg); }
}

.pixo-sub-fabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pixo-fab-container.active .pixo-sub-fabs {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pixo-sub-fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 12, 39, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.pixo-sub-fab:hover {
  transform: scale(1.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.pixo-sub-fab::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.pixo-sub-fab:hover::after {
  opacity: 1;
}

/* LUCKY WHEEL STYLES */
.lucky-wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 1.5rem 0;
}

.wheel-outer {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 10px solid #1a153b;
  position: relative;
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.8);
  background: #0f0c27;
  overflow: hidden;
}

.wheel-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transition: transform 4s cubic-bezier(0.1, 0.8, 0.1, 1);
  transform: rotate(0deg);
}

.wheel-slice {
  position: absolute;
  width: 50%;
  height: 50%;
  left: 50%;
  top: 50%;
  transform-origin: 0% 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.wheel-slice-text {
  position: absolute;
  left: 45px;
  top: 15px;
  transform-origin: 0 0;
  transform: rotate(22.5deg);
  max-width: 65px;
  text-align: center;
  white-space: normal;
  line-height: 1.2;
}

.wheel-arrow {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #ef4444;
  z-index: 10;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.5));
}

.wheel-spin-btn {
  position: absolute;
  width: 68px;
  height: 68px;
  background: radial-gradient(circle, #ffe066 0%, #f59e0b 60%, #d97706 100%);
  border: 4px solid #1a153b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: #1a153b;
  font-size: 0.95rem;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
  transition: var(--transition);
}
.wheel-spin-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.9);
}

@media (max-width: 768px) {
  .build-site-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .domain-choices {
    grid-template-columns: 1fr;
  }
  .pixo-fab-container {
    bottom: 80px;
    left: 20px;
    right: auto;
    align-items: flex-start;
    z-index: 998 !important;
  }
  .pixo-sub-fab::after {
    left: 55px;
    right: auto;
  }
  
  /* Push product description to the bottom on mobile */
  .product-info-col {
    display: flex !important;
    flex-direction: column !important;
  }
  #prod-detail-desc {
    order: 99 !important;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
  }
}

/* Modals Zoom-in spring transition styles */
.modal-content {
  transform: scale(0.9) translateY(15px) !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.modal.active .modal-content {
  transform: scale(1) translateY(0) !important;
}

/* Desktop sizing/positioning for Mobile Auth Overlay Card */
@media (min-width: 769px) {
  .mobile-auth-overlay {
    align-items: center !important;
  }
  .mobile-auth-card {
    border-radius: 28px !important;
    border: 1px solid rgba(255, 102, 0, 0.45) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 231, 235, 0.8) !important;
    transform: scale(0.8) translateY(20px) !important;
    animation: cardZoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
    padding: 3rem 2.5rem !important;
  }
  @keyframes cardZoomIn {
    from { transform: scale(0.8) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
  }
}

/* MAINTENANCE MODE STYLES */
.maintenance-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: radial-gradient(circle at center, #0f0a2e 0%, #060414 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.maintenance-content {
  position: relative;
  background: rgba(15, 12, 39, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 30px;
  padding: 4rem 3rem;
  max-width: 580px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(255, 102, 0,0.15);
  overflow: hidden;
  animation: maintenanceFadeIn 0.8s ease forwards;
}

@keyframes maintenanceFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.maintenance-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.maintenance-logo-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 2.5rem;
}

.maintenance-logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  animation: logoPulse 3s ease-in-out infinite alternate;
}

@keyframes logoPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3)); }
  100% { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(255, 102, 0, 0.7)); }
}

.maintenance-gear-bg {
  position: absolute;
  inset: -20px;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

.maintenance-gear-bg i {
  position: absolute;
  color: var(--primary);
  filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.4));
}

.maintenance-gear-bg .gear-1 {
  font-size: 5rem;
  top: 10px;
  left: 10px;
  animation: spinCW 25s linear infinite;
}

.maintenance-gear-bg .gear-2 {
  font-size: 3.5rem;
  bottom: 15px;
  right: 15px;
  animation: spinCCW 15s linear infinite;
}

@keyframes spinCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinCCW {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.maintenance-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #ff6600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
}

.maintenance-subtitle {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.maintenance-progress {
  height: 6px;
  width: 80%;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  margin: 0 auto 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.maintenance-progress-bar {
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
  box-shadow: 0 0 15px var(--primary);
  border-radius: 10px;
  animation: progressMove 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes progressMove {
  0% { width: 10%; margin-left: 0%; }
  100% { width: 45%; margin-left: 55%; }
}

.maintenance-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.1);
}

@media (max-width: 480px) {
  .maintenance-overlay {
    padding: 1rem !important;
  }
  .maintenance-content {
    padding: 2.5rem 1.5rem !important;
    border-radius: 24px !important;
  }
  .maintenance-logo-container {
    width: 110px !important;
    height: 110px !important;
    margin-bottom: 1.75rem !important;
  }
  .maintenance-gear-bg {
    inset: -10px !important;
  }
  .maintenance-gear-bg .gear-1 {
    font-size: 3.5rem !important;
  }
  .maintenance-gear-bg .gear-2 {
    font-size: 2.5rem !important;
  }
  .maintenance-title {
    font-size: 1.35rem !important;
    letter-spacing: 1px !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
  }
  .maintenance-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    padding: 0 !important;
  }
  .maintenance-progress {
    margin-bottom: 2rem !important;
    width: 90% !important;
  }
  .maintenance-status-badge {
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
  }
}

/* ========================================== */
/* PIXOBOT CUSTOM PREMIUM REDESIGN STYLES     */
/* ========================================== */

/* Mobile bottom navbar slide-down animation */
.mobile-bottom-navbar.hidden-due-to-chat {
  transform: translate(-50%, 150px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease !important;
}

@media (min-width: 769px) {
  #chat-window {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    bottom: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    transform: translateY(100vh) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease !important;
    display: flex !important;
    flex-direction: row !important;
    background: rgba(8, 6, 18, 0.98) !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 100000 !important;
    overflow: hidden !important;
  }
  #chat-window.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* A. Left Sidebar Styles */
.chat-left-sidebar {
  display: none;
}
@media (min-width: 769px) {
  .chat-left-sidebar {
    display: flex;
    width: 240px;
    background: rgba(8, 6, 18, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 1.5rem 1rem;
    justify-content: space-between;
    height: 100%;
    flex-shrink: 0;
  }
}
.chat-sidebar-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 2rem;
}
.chat-sidebar-logo .logo-icon {
  font-size: 1.5rem;
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6));
}
.chat-sidebar-logo .logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.chat-sidebar-logo .logo-text span {
  color: var(--primary);
}
.chat-sidebar-logo .logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 600;
}
.chat-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.chat-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.chat-menu-item i {
  font-size: 1rem;
  width: 18px;
}
.chat-menu-item:hover, .chat-menu-item.active {
  background: rgba(255, 102, 0, 0.15);
  color: #fff;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.1);
}
.chat-sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}
.chat-sidebar-footer .social-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.chat-sidebar-social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chat-sidebar-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.chat-sidebar-social-icon:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--glow-purple);
}
.chat-sidebar-footer .copyright {
  font-size: 0.62rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* B. Main Chat Container */
.chat-main-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  background: rgba(13, 10, 29, 0.85);
  position: relative;
  overflow: hidden;
}

/* C. Right Sidebar Styles */
.chat-right-sidebar {
  display: none;
}
@media (min-width: 769px) {
  .chat-right-sidebar {
    display: flex;
    width: 290px;
    background: rgba(8, 6, 18, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    height: 100%;
    flex-shrink: 0;
    overflow-y: auto;
  }
}
.chat-right-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1rem;
}
.chat-right-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.chat-right-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-right-faq-item {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chat-right-faq-item:hover {
  background: rgba(255, 102, 0, 0.05);
  border-color: rgba(255, 102, 0, 0.2);
  transform: translateX(3px);
}
.chat-right-faq-item .faq-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.chat-right-faq-item .faq-details h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.chat-right-faq-item .faq-details p {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.chat-right-card.operator-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.chat-right-card.security-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 182, 212, 0.03);
  border-color: rgba(6, 182, 212, 0.15);
}
.chat-right-card.security-card .security-icon {
  font-size: 1.5rem;
  color: var(--accent-cyan);
}
.chat-right-card.security-card .security-text h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.chat-right-card.security-card .security-text p {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* D. Header and Quick actions overrides */
.chat-header-bot {
  background: rgba(8, 6, 18, 0.95) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 10px 15px !important;
}
.chat-bot-ai-badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.header-bot-subtext {
  display: none;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 400;
}
@media (min-width: 480px) {
  .header-bot-subtext {
    display: inline;
  }
}
.chat-header-logout-btn {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.25);
  color: #f43f5e;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.chat-header-logout-btn:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: rgba(244, 63, 94, 0.4);
}

.chat-quick-cards {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(8, 6, 18, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.chat-quick-cards::-webkit-scrollbar {
  display: none;
}
.chat-quick-card {
  flex: 0 0 100px;
  min-width: 100px;
  background: rgba(255, 102, 0, 0.03);
  border: 1px solid rgba(255, 102, 0, 0.15);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.chat-quick-card:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(255, 102, 0, 0.35);
  transform: translateY(-2px);
}
.chat-quick-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--primary);
}
.chat-quick-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.chat-quick-desc {
  display: none;
  font-size: 0.62rem;
  color: var(--text-muted);
  line-height: 1.2;
}
@media (min-width: 769px) {
  .chat-quick-card {
    flex: 1;
    min-width: 0;
    padding: 12px 8px;
  }
  .chat-quick-desc {
    display: block;
  }
}

/* E. Scrolling inline FAQ and Promo cards */
.chat-faq-section {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 1rem;
}
.chat-faq-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.chat-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-faq-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 102, 0, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 10px;
}
.chat-faq-item:hover {
  background: rgba(255, 102, 0, 0.04);
  border-color: rgba(229, 231, 235, 0.8);
  transform: translateX(2px);
}
.chat-faq-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.3);
  color: #ff6600;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-faq-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
}
.chat-faq-arrow {
  color: var(--text-muted);
  font-size: 0.75rem;
  opacity: 0.6;
}
.chat-promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(255, 102, 0, 0.1) 100%);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 4px;
  gap: 10px;
}
.chat-promo-card:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.18) 0%, rgba(255, 102, 0, 0.15) 100%);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.12);
  transform: translateY(-2px);
}
.chat-promo-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-promo-icon {
  font-size: 1.25rem;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 5px rgba(6, 182, 212, 0.6));
}
.chat-promo-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-promo-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}
.chat-promo-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.chat-promo-subtitle .price-highlight {
  color: var(--primary);
  font-weight: 800;
}
.chat-promo-arrow {
  color: var(--accent-cyan);
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Intro Overlay Styles */
#chat-intro-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: #080612 !important;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  z-index: 110000 !important;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
#chat-intro-overlay .intro-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  text-align: center !important;
}
#chat-intro-overlay #intro-logo {
  width: 180px !important;
  height: 180px !important;
  object-fit: contain !important;
  transform: scale(0) rotate(0deg) !important;
  opacity: 0 !important;
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 1.2s ease !important;
  filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.4)) !important;
}
#chat-intro-overlay #intro-logo.spin-in {
  transform: scale(1) rotate(360deg) !important;
  opacity: 1 !important;
}
#chat-intro-overlay #intro-logo.spin-out {
  transform: scale(0) rotate(720deg) !important;
  opacity: 0 !important;
  transition: transform 1.2s cubic-bezier(0.36, 0.07, 0.19, 0.97), opacity 1s ease !important;
}
#chat-intro-overlay #intro-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #fff 0%, #ff6600 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-top: 10px !important;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 0.8s ease, transform 0.8s ease !important;
}
#chat-intro-overlay #intro-text.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
#chat-intro-overlay #intro-text.fade-out {
  opacity: 0 !important;
  transform: translateY(-20px) !important;
  transition: opacity 0.6s ease, transform 0.6s ease !important;
}

@media (min-width: 769px) {
  .chat-faq-section {
    display: none !important;
  }
  .fullscreen-chat .chat-body {
    height: 0 !important;
    flex: 1 1 0% !important;
    overflow-y: auto !important;
  }
}

#chat-window.active .chat-body {
  height: 0 !important;
  flex: 1 1 0% !important;
  overflow-y: auto !important;
}

.chat-header-bot,
.chat-quick-cards,
.chat-footer,
#chat-ended-box,
.chat-fixed-promo-banner {
  flex-shrink: 0 !important;
}

/* Fixed Promo Banner */
.chat-fixed-promo-banner {
  display: none; /* Hidden on desktop by default */
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.12), rgba(6, 182, 212, 0.12));
  border-top: 1px solid rgba(255, 102, 0, 0.2);
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}
.chat-fixed-promo-banner:hover {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(6, 182, 212, 0.2));
}
.chat-promo-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-promo-icon {
  font-size: 1.25rem;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 5px rgba(6, 182, 212, 0.4));
}
.chat-promo-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.chat-promo-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.chat-promo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.price-highlight {
  color: var(--accent-cyan);
  font-weight: 700;
}
.chat-promo-arrow {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .chat-fixed-promo-banner {
    display: flex !important; /* Shown on mobile */
  }
}

/* Free Fire Login Button Styles */
.btn-ff-login {
  transition: all 0.3s ease !important;
  border: 1px solid #f57c00 !important;
}
.btn-ff-login:hover {
  background: #f57c00 !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(245, 124, 0, 0.4) !important;
  transform: translateY(-2px);
}
.btn-ff-mobile {
  border: 1px solid rgba(245, 124, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}
.btn-ff-mobile:hover {
  border-color: #f57c00 !important;
  box-shadow: 0 0 12px rgba(245, 124, 0, 0.2) !important;
}

/* Daily Tasks Grid & Cards Styles */
.tasks-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.task-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.task-card:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(229, 231, 235, 0.8) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(4px);
}
body.light-mode .task-card {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
body.light-mode .task-card:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(255, 102, 0, 0.3) !important;
}
body.light-mode .task-card h4 {
  color: #1f2937 !important;
}

/* Prevent text copy and image dragging globally */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select, [contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* Gift Box Styles */
.gift-boxes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .gift-boxes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem !important;
  }
}

.gift-box-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gift-box-card:hover {
  background: rgba(255, 102, 0, 0.05);
  border-color: rgba(255, 102, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15);
}

.gift-box-card.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.gift-box-card.insufficient-balance {
  opacity: 0.65;
  cursor: not-allowed;
  border-color: rgba(239, 68, 68, 0.3) !important;
  background: rgba(239, 68, 68, 0.04) !important;
}

.gift-box-card.insufficient-balance:hover {
  transform: none !important;
  box-shadow: none !important;
}

.gift-box-card.opened.reveal-other {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.gift-box-prize-tag {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 8px;
  border-radius: 8px;
  text-align: center;
  width: max-content;
  max-width: 90%;
  animation: popIn 0.35s ease forwards;
}

.gift-box-prize-tag.win {
  color: #10b981;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.gift-box-prize-tag.empty {
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}



.gift-box-visual {
  width: 70px;
  height: 70px;
  position: relative;
  transition: transform 0.3s ease;
}

.gift-box-lid {
  width: 76px;
  height: 18px;
  background: linear-gradient(90deg, #ff6600, #ff8533);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: -3px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.gift-box-body-part {
  width: 70px;
  height: 48px;
  background: linear-gradient(135deg, #ff8533, #4f46e5);
  border-radius: 0 0 8px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}

.gift-box-body-part::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 100%;
  background: #fbbf24;
  border-radius: 0;
  z-index: 1;
}

.gift-box-lid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 100%;
  background: #fbbf24;
  z-index: 1;
}

.gift-box-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  transition: color 0.3s ease;
}

.gift-box-card:hover .gift-box-title {
  color: var(--accent-cyan);
}

.gift-box-card.shaking .gift-box-visual {
  animation: boxShake 0.5s infinite;
}

.gift-box-card.opened .gift-box-lid {
  transform: translateY(-25px) rotate(-12deg);
}

.gift-box-card.opened .gift-box-visual {
  transform: scale(1.05);
}

@keyframes boxShake {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(6deg); }
  60% { transform: rotate(-5deg); }
  80% { transform: rotate(4deg); }
  100% { transform: rotate(0deg); }
}

/* Base styles for bank-card-item */
.bank-card-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.bank-card-item.active {
  border-color: var(--primary) !important;
}

/* Responsive adjustments for payment methods and saved cards on mobile screens */
@media (max-width: 480px) {
  /* Manual top-up bank card list item responsiveness */
  .bank-card-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .bank-card-item.active {
    border-color: var(--primary) !important;
  }
  .bank-card-item > div {
    width: 100%;
  }
  .bank-card-item .btn-copy, .bank-card-item .m10-phone-wrapper {
    width: 100% !important;
  }
  .bank-card-item .btn-copy, .bank-card-item .m10-phone-wrapper button {
    width: 100% !important;
    justify-content: center;
    display: flex;
  }
  
  /* Terminal top-up card number box responsiveness */
  .terminal-card-box {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    padding: 12px !important;
  }
  .terminal-card-box span {
    text-align: center;
    font-size: 1rem !important;
    letter-spacing: 0.2px !important;
  }
  .terminal-card-box button {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    padding: 10px !important;
  }

  /* Modal padding optimization on smaller mobile devices */
  .premium-balance-modal {
    padding: 1.5rem 1.1rem !important;
    border-radius: 18px !important;
  }

  /* 4 main deposit tabs wrap support and smaller font */
  .deposit-methods-tabs {
    gap: 4px !important;
  }
  .deposit-tab-btn {
    min-width: 80px !important;
    font-size: 0.76rem !important;
    padding: 8px 6px !important;
  }

  /* Saved cards overlay modal container mobile adjustment */
  .saved-cards-container {
    padding: 20px 16px !important;
    border-radius: 16px !important;
    margin: 12px !important;
    max-height: 94vh !important;
    width: calc(100% - 24px) !important;
  }
  .saved-cards-container h2 {
    font-size: 1.15rem !important;
  }
  
  /* Saved cards item responsiveness */
  .saved-card-row {
    padding: 12px !important;
    gap: 10px !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .saved-card-row .card-icon-box {
    display: none !important; /* Hide redundant credit card icon on tiny screens to save space */
  }
  .saved-card-row .card-info-content {
    text-align: center !important;
  }
  .saved-card-row .card-info-content div {
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
  }
  .saved-card-row button {
    width: 100% !important;
    justify-content: center !important;
    display: flex !important;
    padding: 10px !important;
  }
}

/* ====================================================
   ULTIMATE LIGHT MODE OVERRIDES (ABSOLUTE CASCADE PRIORITY)
   ==================================================== */

/* 1. Page Preloader / Vault Loader in Light Mode */
body.light-mode #loader-screen {
  background: #ffffff !important;
}

body.light-mode .loader-bg-panel {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%) !important;
}

body.light-mode .loader-bg-panel.left-panel {
  border-right: 2px solid rgba(255, 102, 0, 0.3) !important;
  box-shadow: 10px 0 30px rgba(255, 102, 0, 0.15) !important;
}

body.light-mode .loader-bg-panel.right-panel {
  border-left: 2px solid rgba(255, 102, 0, 0.3) !important;
  box-shadow: -10px 0 30px rgba(255, 102, 0, 0.15) !important;
}

body.light-mode .loader-text {
  color: #111827 !important;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.4) !important;
}

body.light-mode .loader-bar-container {
  background: rgba(255, 102, 0, 0.12) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

body.light-mode .loader-progress-bar {
  background: linear-gradient(90deg, #ff6600, #ff6600) !important;
}

/* 2. Chatbot Window & Sidebars in Light Mode */
body.light-mode #chat-window,
body.light-mode #chat-window.active,
body.light-mode .messages-chat-window,
body.light-mode .admin-chat-window {
  background: #ffffff !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  box-shadow: 0 20px 50px rgba(255, 102, 0, 0.18) !important;
  color: #111827 !important;
}

body.light-mode .chat-left-sidebar,
body.light-mode .chat-right-sidebar,
body.light-mode .chat-main-container,
body.light-mode .chat-sidebar, 
body.light-mode .chat-main,
body.light-mode .chat-body,
body.light-mode .chat-lobby,
body.light-mode .chat-left-col,
body.light-mode .chat-right-col {
  background: #ffffff !important;
  color: #111827 !important;
  border-color: rgba(229, 231, 235, 0.8) !important;
}

body.light-mode .chat-sidebar-logo .logo-text,
body.light-mode .chat-sidebar-logo .logo-text span,
body.light-mode .chat-sidebar-logo h3,
body.light-mode .chat-sidebar-logo h4 {
  color: #111827 !important;
}

body.light-mode .chat-sidebar-logo .logo-sub {
  color: #4b5563 !important;
}

body.light-mode .chat-menu-item,
body.light-mode .chat-sidebar-item,
body.light-mode .drawer-item {
  color: #111827 !important;
}

body.light-mode .chat-menu-item i,
body.light-mode .chat-sidebar-item i {
  color: #ff6600 !important;
}

body.light-mode .chat-menu-item:hover,
body.light-mode .chat-menu-item.active,
body.light-mode .chat-sidebar-item:hover,
body.light-mode .chat-sidebar-item.active,
body.light-mode .drawer-item:hover {
  background: rgba(255, 102, 0, 0.15) !important;
  color: #ff6600 !important;
  border-color: #ff6600 !important;
}

body.light-mode .chat-header-bot,
body.light-mode .chat-quick-cards {
  background: rgba(249, 250, 251, 0.95) !important;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8) !important;
}

body.light-mode #chat-window-bot-name,
body.light-mode .chat-lobby-history-section h4,
body.light-mode .chat-history-card h5,
body.light-mode .chat-right-card h4,
body.light-mode .chat-quick-title,
body.light-mode .chat-promo-title,
body.light-mode .security-text h5,
body.light-mode .faq-details h5,
body.light-mode .chat-right-faq-item .faq-details h5 {
  color: #111827 !important;
  font-weight: 800 !important;
}

body.light-mode .chat-quick-card,
body.light-mode .chat-right-card,
body.light-mode .chat-history-card,
body.light-mode .chat-faq-item,
body.light-mode .chat-right-faq-item,
body.light-mode .chat-promo-card {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  color: #111827 !important;
}

body.light-mode .chat-quick-card:hover,
body.light-mode .chat-right-card:hover,
body.light-mode .chat-history-card:hover,
body.light-mode .chat-faq-item:hover,
body.light-mode .chat-right-faq-item:hover,
body.light-mode .chat-promo-card:hover {
  background: rgba(255, 102, 0, 0.15) !important;
  border-color: #ff6600 !important;
}

body.light-mode .chat-quick-desc,
body.light-mode .chat-right-faq-item .faq-details p,
body.light-mode .security-text p,
body.light-mode .chat-right-card.operator-card p,
body.light-mode .chat-sidebar-footer .copyright,
body.light-mode .social-title {
  color: #4b5563 !important;
}

body.light-mode .chat-bubble.bot {
  background: #f9fafb !important;
  color: #111827 !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.05) !important;
}

body.light-mode .chat-bubble.user {
  background: linear-gradient(135deg, #ff6600, #ff6600) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3) !important;
}

body.light-mode .chat-footer {
  border-top: 1px solid rgba(255, 102, 0, 0.2) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

body.light-mode #chat-message-input {
  color: #111827 !important;
  background: #ffffff !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

body.light-mode #chat-message-input::placeholder {
  color: #6b7280 !important;
}

/* 3. Chatbot Typing Indicator Animation in Light Mode */
body.light-mode .chat-typing-row,
body.light-mode .typing-bubble {
  background: #f9fafb !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.05) !important;
}

body.light-mode .typing-dots span {
  background: #ff6600 !important;
  box-shadow: 0 0 6px rgba(255, 102, 0, 0.4) !important;
}

/* 4. Notifications, Saved Cards, Build-Site & Product Views Light Mode Overrides */
body.light-mode #notifications-view *,
body.light-mode .notif-card,
body.light-mode .notif-card *,
body.light-mode .notif-text,
body.light-mode .notif-item,
body.light-mode .notif-item * {
  color: #111827 !important;
}

body.light-mode .notif-card,
body.light-mode .notif-item {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
}

body.light-mode #prod-detail-title,
body.light-mode .product-info-title,
body.light-mode .product-info-col h1,
body.light-mode .product-info-col h2,
body.light-mode .product-info-col h3,
body.light-mode .product-info-col span:not(.badge *):not(.btn *),
body.light-mode .product-info-col p,
body.light-mode .product-info-col label,
body.light-mode .product-info-col strong {
  color: #111827 !important;
}

body.light-mode #saved-cards-view,
body.light-mode #saved-cards-view h3,
body.light-mode #saved-cards-view p,
body.light-mode #saved-cards-view div,
body.light-mode .security-note-box,
body.light-mode .security-note-box *,
body.light-mode .empty-cards-box,
body.light-mode .empty-cards-box * {
  color: #111827 !important;
}

body.light-mode #saved-cards-view .admin-form-box {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04) !important;
}

body.light-mode .security-note-box {
  background: rgba(249, 250, 251, 0.8) !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
}

body.light-mode .build-site-form-card,
body.light-mode .build-site-form-card h3,
body.light-mode .build-site-form-card p,
body.light-mode .build-site-form-card label,
body.light-mode .build-site-form-card span {
  color: #111827 !important;
}

/* 5. Custom Toast & Floating Action Buttons */
body.light-mode .custom-toast {
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  border-left: 5px solid #ff6600 !important;
  color: #111827 !important;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2) !important;
}

body.light-mode .mobile-floating-theme-btn,
body.light-mode .pixo-fab-main,
body.light-mode .pixo-sub-fab,
body.light-mode .floating-btn {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  color: #111827 !important;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.2) !important;
}

/* LIGHT MODE CONTRAST FIX FOR NOTIFICATIONS, SAVED CARDS, PRODUCT DETAILS & BUILD SITE */
body.light-mode #notifications-view *,
body.light-mode #notifications-page-list *,
body.light-mode .notif-card,
body.light-mode .notif-card *,
body.light-mode .notif-text,
body.light-mode .notif-date,
body.light-mode .notif-item,
body.light-mode .notif-item * {
  color: #111827 !important;
  font-weight: 600 !important;
}

body.light-mode #saved-cards-view *,
body.light-mode .saved-cards-title,
body.light-mode .security-note-box,
body.light-mode .security-note-box *,
body.light-mode .empty-cards-box,
body.light-mode .empty-cards-box *,
body.light-mode .empty-cards-title,
body.light-mode .empty-cards-desc {
  color: #111827 !important;
}

body.light-mode .security-note-box {
  background: rgba(249, 250, 251, 0.9) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

body.light-mode #prod-detail-title,
body.light-mode .product-info-title,
body.light-mode .product-info-col *,
body.light-mode #prod-detail-qty,
body.light-mode #prod-detail-qty-minus,
body.light-mode #prod-detail-qty-plus {
  color: #111827 !important;
}

body.light-mode .build-site-form-card *,
body.light-mode .build-site-form-card h3,
body.light-mode .build-site-form-card p,
body.light-mode .build-site-form-card label {
  color: #111827 !important;
}

body.light-mode .notif-card,
body.light-mode .notif-item {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
}

/* 6. Desktop Floating Chat Trigger (Support FAB) in Light Mode */
body.light-mode #chat-trigger {
  background: linear-gradient(135deg, #ffffff, #f9fafb) !important;
  border: 2px solid #ff6600 !important;
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4), 0 0 15px rgba(255, 102, 0, 0.3) !important;
  color: #111827 !important;
}

body.light-mode #chat-trigger:hover {
  transform: scale(1.08) rotate(4deg) !important;
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.6), 0 0 25px rgba(255, 102, 0, 0.5) !important;
}

/* 7. Search Input & Search Dropdown in Light Mode */
body.light-mode .search-input-wrapper {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

body.light-mode .nav-search-container:focus-within .search-input-wrapper {
  background: #ffffff !important;
  border-color: #ff6600 !important;
  box-shadow: 0 0 15px rgba(229, 231, 235, 0.8) !important;
}

body.light-mode #nav-search-input {
  color: #111827 !important;
}

body.light-mode #nav-search-input::placeholder {
  color: #6b7280 !important;
}

body.light-mode .search-icon {
  color: #ff6600 !important;
}

body.light-mode #search-modal .modal-content,
body.light-mode .search-results-dropdown,
body.light-mode #search-dropdown-results {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  color: #111827 !important;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15) !important;
}

/* 8. Category Titles Always White */
.category-page-card h3,
.category-card h3,
.category-card-title,
.categories-grid h3,
.categories-page-grid h3,
body.light-mode .category-page-card h3,
body.light-mode .category-card h3,
body.light-mode .category-card-title {
  color: #ffffff !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) !important;
}

/* 9. Store Names Purple-Pink & Verified Badges */
.store-name,
.store-title,
#store-profile-name,
#store-chat-header-name,
.messages-item-name,
.store-badge.merchant,
.store-header-info h2,
.store-profile-header h2 {
  color: #ff7700 !important;
  font-weight: 800 !important;
}

.fa-circle-check,
.verified-badge-glow i {
  color: #ff6600 !important;
}

/* 10. Messages View (Söhbətlərim) Light Mode Overrides */
body.light-mode .messages-layout {
  background: #ffffff !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  box-shadow: 0 10px 35px rgba(255, 102, 0, 0.1) !important;
}

body.light-mode .messages-sidebar {
  background: #ffffff !important;
  border-right: 1px solid rgba(229, 231, 235, 0.8) !important;
}

body.light-mode .messages-sidebar-header {
  border-bottom: 1px solid rgba(255, 102, 0, 0.2) !important;
}

body.light-mode .messages-sidebar-header h3 {
  color: #111827 !important;
}

body.light-mode .messages-item {
  border-color: rgba(255, 102, 0, 0.15) !important;
}

body.light-mode .messages-item:hover,
body.light-mode .messages-item.active {
  background: rgba(255, 102, 0, 0.12) !important;
  border-color: rgba(255, 102, 0, 0.3) !important;
}

body.light-mode .messages-item-name {
  color: #ff6600 !important;
  font-weight: 700 !important;
}

body.light-mode .messages-item-last {
  color: #4b5563 !important;
}

body.light-mode .messages-chat-header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(255, 102, 0, 0.2) !important;
  color: #111827 !important;
}

body.light-mode .messages-chat-header *,
body.light-mode #store-chat-header-name {
  color: #111827 !important;
}

body.light-mode .messages-chat-body {
  background: #ffffff !important;
}

body.light-mode .messages-chat-footer {
  background: #ffffff !important;
  border-top: 1px solid rgba(255, 102, 0, 0.2) !important;
}

body.light-mode #store-chat-input {
  background: #ffffff !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  color: #111827 !important;
}

body.light-mode #store-chat-input::placeholder {
  color: #6b7280 !important;
}

/* 11. Gift Boxes & Bonuses & Coupons Pages Light Mode Overrides */
body.light-mode #bonuses-view,
body.light-mode #bonuses-view *,
body.light-mode #gift-boxes-modal .modal-content,
body.light-mode #gift-boxes-modal .modal-content *,
body.light-mode .gift-box-title,
body.light-mode #user-bonus-display {
  color: #111827 !important;
}

body.light-mode #bonuses-view .build-site-form-card,
body.light-mode #bonuses-view .admin-panel-card,
body.light-mode #gift-boxes-modal .modal-content {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15) !important;
}

body.light-mode .gift-box-card {
  background: #ffffff !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

body.light-mode .gift-box-card:hover {
  background: #f9fafb !important;
  border-color: #ff6600 !important;
}

body.light-mode .btn-pink,
body.light-mode .task-action-btn,
body.light-mode #bonuses-view .btn-secondary {
  background: linear-gradient(135deg, #ff6600, #ff6600) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3) !important;
}

/* 12. Homepage Product Prices PINK ONLY */
.price,
.discounted-price,
.product-card .price,
.product-card .discounted-price,
#popular-products-grid .price,
#all-products-grid .price,
#featured-products-grid .price,
body.light-mode .price,
body.light-mode .discounted-price {
  color: var(--primary) !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: var(--primary) !important;
  font-weight: 800 !important;
}

/* ========================================== */
/* BLOG DETAIL PAGE LIGHT & DARK MODE STYLES  */
/* ========================================== */
.blog-detail-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.blog-detail-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-blog-back,
.btn-blog-share {
  background: rgba(255, 102, 0, 0.12) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  font-weight: 800 !important;
  border-radius: 12px;
  padding: 10px 20px;
  transition: all 0.25s ease;
}

.btn-blog-back:hover,
.btn-blog-share:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4) !important;
}

.blog-detail-cover {
  position: relative;
  width: 100%;
  max-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.blog-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-meta-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.blog-detail-category {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 0.82rem !important;
  padding: 5px 14px !important;
  border-radius: 8px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-detail-meta-items {
  display: flex;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-detail-title {
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
}

.blog-detail-content {
  font-size: 1.08rem !important;
  line-height: 1.85 !important;
  color: #e5e7eb;
  margin-bottom: 2.5rem;
}

body.light-mode #blog-detail-view .blog-detail-container {
  background: #ffffff !important;
  border: 1px solid rgba(229, 231, 235, 0.8) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  color: #1f2937 !important;
}

body.light-mode .blog-detail-title {
  color: #111827 !important;
}

body.light-mode .blog-detail-content {
  color: #374151 !important;
}

body.light-mode .blog-meta-item,
body.light-mode #blog-detail-read-time,
body.light-mode #blog-detail-date {
  color: #6b7280 !important;
}

body.light-mode .btn-blog-back,
body.light-mode .btn-blog-share {
  background: #ffffff !important;
  color: #ff6600 !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

/* ========================================== */
/* PRODUCT COMMENTS DRAWER LIGHT & DARK STYLES*/
/* ========================================== */
.comments-drawer {
  background: #0f0c23 !important;
  border-left: 2px solid var(--primary) !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4) !important;
}

.comments-drawer-header {
  border-bottom: 1px solid rgba(255, 102, 0, 0.2) !important;
  padding: 1.2rem 1.5rem !important;
}

.comments-drawer-header h3 {
  color: var(--primary) !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.35rem !important;
}

.comments-drawer-close {
  color: var(--text-muted) !important;
  font-size: 1.3rem !important;
}

.comments-drawer-close:hover {
  color: var(--primary) !important;
}

.drawer-rating-star {
  color: #f59e0b !important;
  font-size: 1.5rem !important;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.drawer-rating-star:hover {
  transform: scale(1.25);
}

.comments-drawer-footer {
  border-top: 1px solid rgba(255, 102, 0, 0.2) !important;
  background: rgba(13, 10, 30, 0.95) !important;
  padding: 1.2rem 1.5rem !important;
}

body.light-mode .comments-drawer {
  background: #ffffff !important;
  border-left: 2px solid var(--primary) !important;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .comments-drawer-header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(255, 102, 0, 0.2) !important;
}

body.light-mode .comments-drawer-header h3 {
  color: #ff6600 !important;
  font-weight: 900 !important;
}

body.light-mode #drawer-comments-body {
  background: #fafafa !important;
  color: #1f2937 !important;
}

body.light-mode #drawer-comments-body p {
  color: #ff6600 !important;
  font-weight: 800 !important;
}

body.light-mode .comments-drawer-footer {
  background: #ffffff !important;
  border-top: 1px solid rgba(255, 102, 0, 0.2) !important;
}

body.light-mode #drawer-review-text {
  background: #ffffff !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
  color: #1f2937 !important;
}

body.light-mode #drawer-review-text::placeholder {
  color: #9ca3af !important;
}

body.light-mode .comments-drawer-footer .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #ffffff !important;
}

/* ==================================================== */
/* SUPER MODERN DEPOSIT / TOP-UP MODAL ("Balansı Artır") */
/* ==================================================== */

/* Container & Base Modal Styling */
#balance-modal .modal-content.premium-balance-modal {
  max-width: 540px !important;
  border-radius: 28px !important;
  padding: 2rem 2.2rem !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--primary-glow) !important;
  transition: all 0.3s ease;
  position: relative;
}

body.light-mode #balance-modal .modal-content.premium-balance-modal {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 102, 0, 0.08) !important;
}

/* Modal Title */
.deposit-modal-title {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.55rem !important;
  color: var(--text-main) !important;
  margin-bottom: 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

body.light-mode .deposit-modal-title {
  color: #111827 !important;
}

.deposit-modal-title i {
  color: var(--primary) !important;
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

/* Tabs Bar */
.deposit-methods-tabs {
  display: flex !important;
  gap: 6px !important;
  margin-bottom: 1.5rem !important;
  background: rgba(255, 102, 0, 0.05) !important;
  padding: 6px !important;
  border-radius: 18px !important;
  border: 1px solid var(--border-color) !important;
  flex-wrap: wrap !important;
}

body.light-mode .deposit-methods-tabs {
  background: #f3f4f6 !important;
  border: 1px solid #e5e7eb !important;
}

/* Tab Item Button */
.deposit-tab-btn {
  flex: 1 !important;
  min-width: 85px !important;
  padding: 10px 6px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  font-size: 0.82rem !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  color: var(--text-muted) !important;
  background: transparent !important;
}

body.light-mode .deposit-tab-btn {
  color: #4b5563 !important;
}

.deposit-tab-btn:hover:not(.active) {
  background: rgba(255, 102, 0, 0.1) !important;
  color: var(--primary) !important;
}

body.light-mode .deposit-tab-btn:hover:not(.active) {
  background: #e5e7eb !important;
  color: #111827 !important;
}

.deposit-tab-btn.active {
  background: linear-gradient(135deg, #ff6600, #ff8533) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.35) !important;
}

/* Hero Epoint Banner Box */
.deposit-epoint-banner {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.08), rgba(6, 182, 212, 0.08)) !important;
  border: 1px solid rgba(255, 102, 0, 0.25) !important;
  border-radius: 20px !important;
  padding: 1.35rem 1.25rem !important;
  text-align: center !important;
  margin-bottom: 1.25rem !important;
  position: relative !important;
  overflow: hidden !important;
}

body.light-mode .deposit-epoint-banner {
  background: linear-gradient(135deg, #fff7ed, #ecfeff) !important;
  border: 1px solid rgba(255, 102, 0, 0.2) !important;
}

.epoint-brand-title {
  font-size: 1.7rem !important;
  font-weight: 900 !important;
  color: var(--text-main) !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 4px !important;
}

body.light-mode .epoint-brand-title {
  color: #111827 !important;
}

.epoint-subtext {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 10px !important;
}

body.light-mode .epoint-subtext {
  color: #4b5563 !important;
}

.epoint-badge-pill {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 10px !important;
  padding: 4px 12px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: var(--text-muted) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}

body.light-mode .epoint-badge-pill {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

/* Deposit Input Label & Input Box */
.deposit-input-label {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: var(--text-main) !important;
  margin-bottom: 6px !important;
  display: block !important;
}

body.light-mode .deposit-input-label {
  color: #111827 !important;
}

#balance-modal .form-control {
  background: var(--bg-darker) !important;
  color: var(--text-main) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 14px !important;
  padding: 12px 16px !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
}

body.light-mode #balance-modal .form-control {
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid #d1d5db !important;
}

body.light-mode #balance-modal .form-control:focus {
  border-color: #ff6600 !important;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15) !important;
}

/* Preset Buttons Pills */
.deposit-preset-btn {
  flex: 1 !important;
  min-width: 50px !important;
  background: rgba(255, 102, 0, 0.1) !important;
  border: 1px solid rgba(255, 102, 0, 0.25) !important;
  color: var(--primary) !important;
  border-radius: 10px !important;
  padding: 8px 6px !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

body.light-mode .deposit-preset-btn {
  background: #fff7ed !important;
  border: 1px solid rgba(255, 102, 0, 0.25) !important;
  color: #c2410c !important;
}

.deposit-preset-btn:hover {
  background: linear-gradient(135deg, #ff6600, #ff8533) !important;
  color: #ffffff !important;
  border-color: #ff6600 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3) !important;
}

/* Main Action Button ("Yeni Kart ilə Ödə") */
.deposit-main-btn {
  width: 100% !important;
  padding: 1.05rem !important;
  background: linear-gradient(135deg, #ff6600, #ff8533) !important;
  border: none !important;
  border-radius: 16px !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.35) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

.deposit-main-btn:hover {
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.5) !important;
}

/* Saved Cards Header & Items */
.saved-cards-header {
  color: var(--text-main) !important;
  font-size: 0.88rem !important;
  margin-bottom: 0.85rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

body.light-mode .saved-cards-header {
  color: #111827 !important;
}

.saved-card-item {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 14px !important;
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  transition: all 0.2s ease !important;
}

body.light-mode .saved-card-item {
  background: #f9fafb !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.saved-card-title {
  font-family: monospace !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  color: var(--text-main) !important;
}

body.light-mode .saved-card-title {
  color: #111827 !important;
}

.saved-card-sub {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
}

body.light-mode .saved-card-sub {
  color: #4b5563 !important;
}

.btn-manage-cards {
  width: 100% !important;
  padding: 10px !important;
  background: rgba(255, 102, 0, 0.08) !important;
  border: 1px solid rgba(255, 102, 0, 0.2) !important;
  border-radius: 12px !important;
  color: var(--text-main) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.2s ease !important;
  margin-top: 12px !important;
}

body.light-mode .btn-manage-cards {
  background: #f3f4f6 !important;
  border: 1px solid #d1d5db !important;
  color: #111827 !important;
}

.btn-manage-cards:hover {
  background: rgba(255, 102, 0, 0.15) !important;
  border-color: #ff6600 !important;
  color: #ff6600 !important;
}

/* Footer Lock Note */
.deposit-security-note {
  text-align: center !important;
  font-size: 0.72rem !important;
  color: var(--text-muted) !important;
  margin-top: 0.8rem !important;
  font-weight: 600 !important;
}

body.light-mode .deposit-security-note {
  color: #6b7280 !important;
}

/* ==================================================== */
/* CHATBOT & LIVE CHAT CUSTOMER MESSAGE ALIGNMENT FIX */
/* ==================================================== */
.message.user,
.message-bubble-wrapper.outgoing {
  margin-left: auto !important;
  margin-right: 0 !important;
  align-self: flex-end !important;
  align-items: flex-end !important;
  text-align: right !important;
}

.message.user .message-bubble,
.message-bubble-wrapper.outgoing .message-bubble {
  text-align: left !important;
  border-bottom-right-radius: 4px !important;
}

.message.bot,
.message.admin,
.message-bubble-wrapper.incoming {
  margin-right: auto !important;
  margin-left: 0 !important;
  align-self: flex-start !important;
  align-items: flex-start !important;
  text-align: left !important;
}

/* ==================================================== */
/* SINGLE BLOG VIEW TITLE REMOVAL                       */
/* ==================================================== */
#blog-detail-view .blog-detail-title {
  display: none !important;
}

/* ==================================================== */
/* SUPER MODERN POPUP AD & AD SETTINGS MODAL STYLES     */
/* ==================================================== */

/* Backdrop overlay */
#popup-ad-modal.modal {
  position: fixed;
  inset: 0;
  z-index: 999999 !important;
  display: none;
  align-items: center;
  justify-content: center;
}

#popup-ad-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Desktop popup card (center modal) */
@media (min-width: 769px) {
  #popup-ad-modal .popup-ad-card {
    position: relative;
    z-index: 10;
    width: 480px;
    max-width: 90vw;
    background: rgba(15, 12, 35, 0.98);
    border: 1px solid rgba(255, 102, 0, 0.35);
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 102, 0, 0.25);
    padding: 1.5rem;
    animation: popupDesktopScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  body.light-mode #popup-ad-modal .popup-ad-card {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 0 25px rgba(255, 102, 0, 0.1) !important;
  }
}

/* Mobile popup card (bottom sheet) */
@media (max-width: 768px) {
  #popup-ad-modal {
    align-items: flex-end !important;
  }

  #popup-ad-modal .popup-ad-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    background: rgba(15, 12, 35, 0.98);
    border-top: 3px solid var(--primary);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.6);
    padding: 1.25rem 1.25rem 1.75rem 1.25rem;
    animation: popupMobileSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  body.light-mode #popup-ad-modal .popup-ad-card {
    background: #ffffff !important;
    border-top: 3px solid #ff6600 !important;
  }
}

@keyframes popupDesktopScale {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes popupMobileSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* 16:9 Image Box */
.popup-ad-img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  position: relative;
}

.popup-ad-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title & Truncated Description */
.popup-ad-title-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  color: var(--text-main) !important;
  margin-bottom: 0.5rem !important;
}

body.light-mode .popup-ad-title-text {
  color: #111827 !important;
}

.popup-ad-desc-text {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  line-height: 1.45 !important;
  margin-bottom: 1.25rem !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-height: 2.9em !important;
}

body.light-mode .popup-ad-desc-text {
  color: #4b5563 !important;
}

/* Animated Floating Close Button */
.popup-ad-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.3);
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-ad-close-btn:hover {
  background: #ff6600;
  color: #ffffff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

/* CTA "Daxil Ol" Button */
.popup-ad-cta-btn {
  width: 100% !important;
  padding: 0.95rem !important;
  background: linear-gradient(135deg, #ff6600, #ff8533) !important;
  border: none !important;
  border-radius: 14px !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.35) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  margin-bottom: 0.85rem !important;
}

.popup-ad-cta-btn:hover {
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.5) !important;
}

/* Don't Show Again Checkbox */
.popup-ad-dont-show-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.popup-ad-dont-show-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

body.light-mode .popup-ad-dont-show-label {
  color: #6b7280;
}

/* Animated Switch Toggle for Ad Settings */
.modern-toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}
.modern-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--border-color);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 34px;
}
body.light-mode .toggle-slider {
  background-color: #e5e7eb;
  border-color: #d1d5db;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
input:checked + .toggle-slider {
  background: linear-gradient(135deg, #ff6600, #ff8533);
  border-color: #ff6600;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}
input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

body.light-mode .premium-ad-settings-card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

/* Pixo Bot AI Search Animation & Preview Button */
.pixo-ai-bot-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.18), rgba(255, 133, 51, 0.18));
  border: 2px solid #ff6600;
  color: #ff6600;
  font-size: 1.8rem;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.5);
  animation: pixoAiBotPulseAnim 1.4s infinite ease-in-out;
}

@keyframes pixoAiBotPulseAnim {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.8), 0 0 45px rgba(255, 133, 51, 0.5);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
  }
}

.btn-preview {
  transition: all 0.3s ease;
}
.btn-preview:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5) !important;
  opacity: 0.95;
}

/* =================================================== */
/* PIXO BOT SEARCH OVERLAY - ORANGE THEME (LIGHT & DARK) */
/* =================================================== */

.pixo-ai-search-container {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(15, 12, 39, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(255, 102, 0, 0.35);
  margin-top: 0.5rem;
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.15);
}

.pixo-ai-progress-track {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.2);
}

.pixo-ai-timer-subtext {
  color: var(--text-muted);
}

.pixo-no-results-title {
  color: #ffffff;
}

.pixo-no-results-sub {
  color: var(--text-muted);
}

/* SUPER DESIGN LIGHT MODE ORANGE STYLES FOR SEARCH OVERLAY */
body.light-mode .search-overlay-backdrop {
  background: rgba(241, 245, 249, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

body.light-mode .search-overlay-content {
  background: #ffffff !important;
  border: 2px solid rgba(255, 102, 0, 0.4) !important;
  box-shadow: 0 25px 60px rgba(255, 102, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  color: #0f172a !important;
}

body.light-mode .search-overlay-close-btn {
  color: #64748b !important;
  background: #f1f5f9 !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.light-mode .search-overlay-close-btn:hover {
  color: #ef4444 !important;
  background: #fee2e2 !important;
  transform: rotate(90deg) scale(1.1) !important;
}

body.light-mode #search-overlay-input {
  background: #ffffff !important;
  border: 2px solid #ff6600 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.3) !important;
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  border-radius: 12px;
  font-size: 1rem;
}

body.light-mode #search-overlay-input::placeholder {
  color: #94a3b8 !important;
  font-weight: 400 !important;
}

body.light-mode #search-overlay-input:focus {
  background: #ffffff !important;
  border-color: #ff6600 !important;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.5) !important;
  outline: none !important;
}

body.light-mode #search-overlay-btn {
  background: linear-gradient(135deg, #ff6600, #ff8533) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4) !important;
}

body.light-mode #search-overlay-btn:hover {
  box-shadow: 0 6px 22px rgba(255, 102, 0, 0.6) !important;
  transform: translateY(-1px) !important;
}

body.light-mode .search-overlay-result-item {
  background: #fff7ed !important;
  border: 1px solid rgba(255, 102, 0, 0.2) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

body.light-mode .search-overlay-result-item:hover {
  background: #ffffff !important;
  border-color: #ff6600 !important;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.25) !important;
  transform: translateX(4px) !important;
}

body.light-mode .search-result-info h4 {
  color: #0f172a !important;
  font-weight: 700 !important;
}

body.light-mode .search-result-info p {
  color: #64748b !important;
}

body.light-mode .search-result-price .price {
  color: #ff6600 !important;
  font-weight: 800 !important;
}

body.light-mode .search-result-price .old-price {
  color: #94a3b8 !important;
}

body.light-mode .pixo-ai-search-container {
  background: #ffffff !important;
  border: 1px solid rgba(255, 102, 0, 0.35) !important;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15) !important;
}

body.light-mode .pixo-ai-progress-track {
  background: #ffedd5 !important;
  border: 1px solid rgba(255, 102, 0, 0.2) !important;
}

body.light-mode .pixo-ai-timer-subtext {
  color: #64748b !important;
}

body.light-mode .pixo-no-results-title {
  color: #0f172a !important;
}

body.light-mode .pixo-no-results-sub {
  color: #64748b !important;
}

body.light-mode .pixo-ai-bot-pulse {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(255, 133, 51, 0.15)) !important;
  border: 2px solid #ff6600 !important;
  color: #ff6600 !important;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.4) !important;
}

/* ========================================== */
/* SITE INITIAL PRELOADER (WHITE & FLUID SVG) */
/* ========================================== */
.site-page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff !important;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

.site-page-preloader.fade-out {
  opacity: 0;
  transform: scale(1.05);
  visibility: hidden;
  pointer-events: none;
}

.site-preloader-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-preloader-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: preloaderFluidGlow 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@keyframes preloaderFluidGlow {
  0%, 100% { transform: scale(0.92); opacity: 0.5; }
  50% { transform: scale(1.12); opacity: 0.95; }
}

/* Large Cute Tiger SVG Fluid animation */
.site-preloader-tiger {
  width: 480px;
  height: 480px;
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(255, 102, 0, 0.2));
  animation: tigerFluidFloat 3s infinite cubic-bezier(0.37, 0, 0.63, 1);
  z-index: 2;
  color: var(--text-muted);
}

.pixo-no-results-title {
  color: #ffffff;
}

.pixo-no-results-sub {
  color: var(--text-muted);
}

/* SUPER DESIGN LIGHT MODE ORANGE STYLES FOR SEARCH OVERLAY */
body.light-mode .search-overlay-backdrop {
  background: rgba(241, 245, 249, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

body.light-mode .search-overlay-content {
  background: #ffffff !important;
  border: 2px solid rgba(255, 102, 0, 0.4) !important;
  box-shadow: 0 25px 60px rgba(255, 102, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  color: #0f172a !important;
}

body.light-mode .search-overlay-close-btn {
  color: #64748b !important;
  background: #f1f5f9 !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.light-mode .search-overlay-close-btn:hover {
  color: #ef4444 !important;
  background: #fee2e2 !important;
  transform: rotate(90deg) scale(1.1) !important;
}

body.light-mode #search-overlay-input {
  background: #ffffff !important;
  border: 2px solid #ff6600 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.3) !important;
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  border-radius: 12px;
  font-size: 1rem;
}

body.light-mode #search-overlay-input::placeholder {
  color: #94a3b8 !important;
  font-weight: 400 !important;
}

body.light-mode #search-overlay-input:focus {
  background: #ffffff !important;
  border-color: #ff6600 !important;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.5) !important;
  outline: none !important;
}

body.light-mode #search-overlay-btn {
  background: linear-gradient(135deg, #ff6600, #ff8533) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4) !important;
}

body.light-mode #search-overlay-btn:hover {
  box-shadow: 0 6px 22px rgba(255, 102, 0, 0.6) !important;
  transform: translateY(-1px) !important;
}

body.light-mode .search-overlay-result-item {
  background: #fff7ed !important;
  border: 1px solid rgba(255, 102, 0, 0.2) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

body.light-mode .search-overlay-result-item:hover {
  background: #ffffff !important;
  border-color: #ff6600 !important;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.25) !important;
  transform: translateX(4px) !important;
}

body.light-mode .search-result-info h4 {
  color: #0f172a !important;
  font-weight: 700 !important;
}

body.light-mode .search-result-info p {
  color: #64748b !important;
}

body.light-mode .search-result-price .price {
  color: #ff6600 !important;
  font-weight: 800 !important;
}

body.light-mode .search-result-price .old-price {
  color: #94a3b8 !important;
}

body.light-mode .pixo-ai-search-container {
  background: #ffffff !important;
  border: 1px solid rgba(255, 102, 0, 0.35) !important;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15) !important;
}

body.light-mode .pixo-ai-progress-track {
  background: #ffedd5 !important;
  border: 1px solid rgba(255, 102, 0, 0.2) !important;
}

body.light-mode .pixo-ai-timer-subtext {
  color: #64748b !important;
}

body.light-mode .pixo-no-results-title {
  color: #0f172a !important;
}

body.light-mode .pixo-no-results-sub {
  color: #64748b !important;
}

body.light-mode .pixo-ai-bot-pulse {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(255, 133, 51, 0.15)) !important;
  border: 2px solid #ff6600 !important;
  color: #ff6600 !important;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.4) !important;
}

/* ========================================== */
/* SITE INITIAL PRELOADER (WHITE & FLUID SVG) */
/* ========================================== */
.site-page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff !important;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
}

.site-page-preloader.fade-out {
  opacity: 0;
  transform: scale(1.05);
  visibility: hidden;
  pointer-events: none;
}

.site-preloader-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-preloader-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: preloaderFluidGlow 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@keyframes preloaderFluidGlow {
  0%, 100% { transform: scale(0.92); opacity: 0.5; }
  50% { transform: scale(1.12); opacity: 0.95; }
}

/* Large Cute Tiger SVG Fluid animation */
.site-preloader-tiger {
  width: 480px;
  height: 480px;
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(255, 102, 0, 0.2));
  animation: tigerFluidFloat 3s infinite cubic-bezier(0.37, 0, 0.63, 1);
  z-index: 2;
  position: relative;
}

@keyframes tigerFluidFloat {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-16px) scale(1.035) rotate(0.8deg); }
}

/* Super Stylish Animated Orange Title */
.site-preloader-brand-title.orange-animated-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 5px;
  margin-top: 15px;
  text-transform: uppercase;
  z-index: 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-preloader-brand-title.orange-animated-title .letter {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00 0%, #ff5500 50%, #ff2d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 18px rgba(255, 102, 0, 0.45));
  opacity: 0;
  transform: translateY(24px) scale(0.7);
  animation: letterTypewriterWave 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Staggered Delay for Letter Wave Animation */
.site-preloader-brand-title.orange-animated-title .letter:nth-child(1) { animation-delay: 0.15s; }
.site-preloader-brand-title.orange-animated-title .letter:nth-child(2) { animation-delay: 0.25s; }
.site-preloader-brand-title.orange-animated-title .letter:nth-child(3) { animation-delay: 0.35s; }
.site-preloader-brand-title.orange-animated-title .letter:nth-child(4) { animation-delay: 0.45s; }
.site-preloader-brand-title.orange-animated-title .letter:nth-child(6) { animation-delay: 0.65s; }
.site-preloader-brand-title.orange-animated-title .letter:nth-child(7) { animation-delay: 0.75s; }
.site-preloader-brand-title.orange-animated-title .letter:nth-child(8) { animation-delay: 0.85s; }
.site-preloader-brand-title.orange-animated-title .letter:nth-child(9) { animation-delay: 0.95s; }

@keyframes letterTypewriterWave {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.6);
    filter: drop-shadow(0 0 0 rgba(255, 102, 0, 0));
  }
  70% {
    transform: translateY(-6px) scale(1.18);
    filter: drop-shadow(0 10px 28px rgba(255, 102, 0, 0.8));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 6px 20px rgba(255, 102, 0, 0.5));
  }
}

/* Mobile responsive scaling */
@media (max-width: 768px) {
  .site-preloader-tiger {
    width: 290px;
    height: 290px;
    max-width: 85vw;
    max-height: 55vh;
  }
  .site-preloader-brand-title,
  .site-preloader-brand-title.orange-animated-title {
    display: none !important;
  }
  .site-preloader-glow {
    width: 350px;
    height: 350px;
  }
}

/* ==========================================
   MOBILE APK DOWNLOAD BUTTON STYLES
   ========================================== */
.nav-apk-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
  color: #ffffff !important;
  padding: 7px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-apk-download-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 22px rgba(255, 102, 0, 0.55);
  background: linear-gradient(135deg, #ff7700 0%, #ffa000 100%);
}

.nav-apk-download-btn i {
  font-size: 1.15rem;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}

.apk-version-badge {
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .nav-apk-download-btn {
    padding: 4px 8px;
    font-size: 0.70rem;
    gap: 4px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
  }
  .nav-apk-download-btn i {
    font-size: 0.85rem;
  }
  .nav-apk-download-btn .apk-version-badge {
    display: none !important;
  }
}
