/* ==========================================================================
   RTX Software - Modern Gaming & Tech E-Commerce Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #07090e;
  --bg-secondary: #0d111a;
  --bg-card: rgba(18, 24, 38, 0.7);
  --bg-card-hover: rgba(26, 34, 53, 0.85);
  --bg-modal: #0d121d;
  
  --accent-rtx: #00ff87;
  --accent-rtx-glow: rgba(0, 255, 135, 0.4);
  --accent-cyan: #00d2ff;
  --accent-purple: #9d4edd;
  --accent-red: #ff3366;
  --accent-amber: #ffb703;

  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 255, 135, 0.25);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-main: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(0, 255, 135, 0.15);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Cyber Background FX */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 15% 15%, rgba(0, 255, 135, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(0, 210, 255, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.04) 0%, transparent 60%);
  z-index: -2;
  pointer-events: none;
}

.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-rtx) 60%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-rtx {
  color: var(--accent-rtx);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-badge {
  background: linear-gradient(135deg, var(--accent-rtx), #00b862);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 1px;
  box-shadow: 0 0 15px var(--accent-rtx-glow);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-rtx);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
}

.cart-btn:hover {
  border-color: var(--accent-rtx);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.cart-badge {
  background: var(--accent-rtx);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
  position: relative;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-rtx);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-rtx);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-rtx);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.search-bar-wrapper {
  max-width: 600px;
  margin: 0 auto 1.8rem;
  position: relative;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-rtx), #00b862);
  color: #000;
  box-shadow: 0 8px 24px rgba(0, 255, 135, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 255, 135, 0.45);
}

.btn-secondary {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--accent-rtx);
  color: var(--accent-rtx);
  box-shadow: 0 8px 24px rgba(0, 255, 135, 0.15);
}

.search-input {
  width: 100%;
  background: rgba(13, 17, 26, 0.9);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem 1rem 3rem;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.search-input:focus {
  border-color: var(--accent-rtx);
  box-shadow: 0 0 20px rgba(0, 255, 135, 0.2);
}

.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 1.2rem;
}

/* Category Filter Tabs */
.category-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.15), rgba(0, 210, 255, 0.1));
  border-color: var(--accent-rtx);
  color: var(--accent-rtx);
  box-shadow: 0 0 15px rgba(0, 255, 135, 0.15);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.8rem;
  margin-bottom: 5rem;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-rtx), transparent);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-main), var(--shadow-glow);
  background: var(--bg-card-hover);
}

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

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-cyan);
  background: rgba(0, 210, 255, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.badge-undetected {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-rtx);
  background: rgba(0, 255, 135, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 135, 0.2);
}

.badge-stock {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-amber);
  background: rgba(255, 183, 3, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
  min-height: 2.6rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-item {
  font-size: 0.82rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.feature-item svg {
  color: var(--accent-rtx);
  flex-shrink: 0;
}

.option-select-container {
  margin-bottom: 1.2rem;
}

.option-select-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.product-option-select {
  width: 100%;
  background: rgba(13, 17, 26, 0.9);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.8rem;
  color: var(--accent-rtx);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.product-option-select:focus {
  box-shadow: 0 0 10px rgba(0, 255, 135, 0.25);
}

.card-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-rtx);
}

.btn-buy-now {
  background: linear-gradient(135deg, var(--accent-rtx), #00b862);
  color: #000;
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-buy-now:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px var(--accent-rtx-glow);
}

.buy-nav-btn {
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.15), rgba(0, 210, 255, 0.1));
  border: 1px solid var(--accent-rtx);
  color: var(--accent-rtx);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(0, 255, 135, 0.15);
}

.buy-nav-btn:hover {
  background: var(--accent-rtx);
  color: #000;
  box-shadow: 0 0 25px var(--accent-rtx-glow);
}

/* Live Statistics Section */
.stats-section {
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: rgba(18, 24, 38, 0.85);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-rtx);
  box-shadow: 0 0 25px rgba(0, 255, 135, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-rtx);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(0, 255, 135, 0.3);
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.stat-subtext {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Auth Component Styles */
.btn-auth-trigger {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  margin-right: 0.4rem;
}

.btn-auth-trigger:hover {
  border-color: var(--accent-rtx);
  color: #fff;
}

.btn-auth-trigger.highlight {
  background: rgba(0, 255, 135, 0.1);
  border-color: rgba(0, 255, 135, 0.3);
  color: var(--accent-rtx);
}

.btn-auth-trigger.highlight:hover {
  background: var(--accent-rtx);
  color: #000;
  box-shadow: 0 0 15px var(--accent-rtx-glow);
}

.user-profile-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glow);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-md);
  margin-right: 0.5rem;
}

.user-name-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-rtx);
}

.btn-logout {
  background: none;
  border: none;
  color: var(--accent-red);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-logout:hover {
  text-decoration: underline;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
}

.auth-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.auth-tab-btn.active {
  color: var(--accent-rtx);
  border-bottom-color: var(--accent-rtx);
}

.auth-error-box {
  background: rgba(255, 51, 102, 0.15);
  border: 1px solid rgba(255, 51, 102, 0.4);
  color: var(--accent-red);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* ASCII Loader Screen */
.ascii-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ascii-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.ascii-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#asciiCanvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ascii-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  line-height: 1em;
  margin: 0;
  padding: 0;
  user-select: none;
  background: linear-gradient(135deg, var(--accent-rtx), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 9;
  white-space: pre;
}

.terminal-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

.osint-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  opacity: 0.1;
  pointer-events: none;
}

/* Decrypt Text Animation */
.decrypt-text {
  font-family: 'Space Grotesk', var(--font-heading);
  white-space: pre-wrap;
}

.decrypt-char.encrypted {
  opacity: 0.4;
  color: var(--accent-rtx);
}

/* Marquee Section */
.marquee-section {
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.marquee-container {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  width: fit-content;
}

.marquee-section:hover .marquee-container {
  animation-play-state: paused;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: var(--transition);
}

.marquee-item:hover {
  border-color: var(--accent-rtx);
  transform: translateY(-2px);
}

.marquee-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 255, 135, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-rtx);
  font-size: 0.9rem;
}

.marquee-text {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
}

/* Features Highlights Section */
.highlights-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  margin-bottom: 5rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.highlight-box {
  text-align: center;
  padding: 1.5rem;
}

.highlight-icon {
  width: 54px;
  height: 54px;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--accent-rtx);
  font-size: 1.5rem;
}

.highlight-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active {
  border-color: var(--accent-rtx);
}

.faq-icon {
  transition: transform 0.3s;
}

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

/* Slide-over Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--bg-modal);
  border-left: 1px solid var(--border-light);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.cart-drawer-overlay.active .cart-drawer {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-close-cart {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-close-cart:hover {
  color: #fff;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.empty-cart-msg {
  text-align: center;
  color: var(--text-dim);
  margin: auto 0;
}

.cart-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.cart-item-price {
  font-size: 0.88rem;
  color: var(--accent-rtx);
  font-weight: 700;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  border-color: var(--accent-rtx);
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  background: rgba(0, 0, 0, 0.3);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-rtx), #00b862);
  color: #000;
  border: none;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-checkout:hover {
  box-shadow: 0 0 20px var(--accent-rtx-glow);
  transform: translateY(-2px);
}

/* Checkout Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal {
  background: var(--bg-modal);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.pay-option {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.pay-option:hover,
.pay-option.selected {
  border-color: var(--accent-rtx);
  background: rgba(0, 255, 135, 0.08);
  color: var(--accent-rtx);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  color: #fff;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-rtx);
}

/* Buy Modal & Contact Channel Styling */
.buy-modal {
  max-width: 560px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-rtx);
  background: rgba(0, 255, 135, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 135, 0.25);
  margin-bottom: 0.3rem;
}

.buy-title {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 800;
}

.buy-price {
  font-size: 1.1rem;
  color: var(--accent-rtx);
  font-weight: 800;
  font-family: var(--font-heading);
}

.buy-notice {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1.2rem 0;
  line-height: 1.5;
}

.contact-channels-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact-channel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  transition: var(--transition);
}

.contact-channel-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.contact-channel-card.discord-card {
  border-left: 4px solid #5865F2;
}

.contact-channel-card.whatsapp-card {
  border-left: 4px solid #25D366;
}

.contact-channel-card.instagram-card {
  border-left: 4px solid #E1306C;
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.discord-card .channel-icon {
  background: rgba(88, 101, 242, 0.15);
  color: #5865F2;
}

.whatsapp-card .channel-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.instagram-card .channel-icon {
  background: rgba(225, 48, 108, 0.15);
  color: #E1306C;
}

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

.channel-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.channel-value {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}

.channel-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.copy-channel-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.copy-channel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.copy-channel-btn.copied {
  background: rgba(0, 255, 135, 0.2);
  border-color: var(--accent-rtx);
  color: var(--accent-rtx);
}

.direct-link-btn {
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
  white-space: nowrap;
}

.direct-link-btn.wa-btn {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.direct-link-btn.wa-btn:hover {
  background: #25D366;
  color: #000;
}

.direct-link-btn.insta-btn {
  background: rgba(225, 48, 108, 0.2);
  color: #E1306C;
  border: 1px solid rgba(225, 48, 108, 0.4);
}

.direct-link-btn.insta-btn:hover {
  background: #E1306C;
  color: #fff;
}

.modal-footer-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-light);
  background: rgba(5, 7, 11, 0.95);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 300px;
  margin-top: 0.8rem;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-rtx);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    max-width: 100%;
  }
}
