/*
 * Game Crate Stylesheet
 *
 * A modern, responsive theme for the Game Crate console rental site. Built with CSS variables
 * for easy theming and clean layouts. Feel free to adjust colors and spacing to suit your
 * brand. This file defines common components such as the navbar, hero section, cards,
 * forms and footer.
 */

:root {
  /* Refined Gaming Colors - Cyberpunk Blue Theme */
  --primary: #00d9ff;
  --primary-dark: #0099cc;
  --secondary: #6366f1;
  --accent: #7c3aed;
  --accent-bright: #00ff88;
  --warning: #fbbf24;
  
  /* Consistent Dark Backgrounds */
  --background: #0f0f0f;
  --background-secondary: #1a1a1a;
  --background-tertiary: #2a2a2a;
  --foreground: #1e1e1e;
  --foreground-glass: rgba(30, 30, 30, 0.9);
  --foreground-card: rgba(26, 26, 26, 0.95);
  
  /* High Contrast Text */
  --text: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #a1a1aa;
  --text-accent: var(--primary);
  --text-bright: #ffffff;
  
  /* Refined Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-gaming: linear-gradient(135deg, #00d9ff, #6366f1, #7c3aed);
  --gradient-card: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(30, 30, 30, 0.95));
  
  /* Consistent Effects */
  --shadow-glow: 0 0 20px rgba(0, 217, 255, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --border-glow: 1px solid rgba(0, 217, 255, 0.3);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.1);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--background);
  min-height: 100vh;
  scroll-behavior: smooth;
  
  /* Subtle gaming background pattern */
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(0, 217, 255, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Global transitions for smooth animations */
*, *::before, *::after {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved transitions for specific elements */
a, button, input, select, textarea {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Remove transitions for reduced motion users */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Enhanced focus states for accessibility */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--foreground-glass);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-glow);
  border-bottom: var(--border-glow);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.navbar a.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.navbar a.logo:hover {
  transform: scale(1.05);
}
.navbar a.logo img {
  height: 40px;
  transition: all 0.3s ease;
}
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.navbar li {
  margin-left: 1.5rem;
  position: relative;
}
.navbar a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.navbar a:hover {
  color: var(--primary);
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.2);
}
.navbar a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}
.navbar a:hover::before {
  width: 80%;
}

/* Enhanced Hero section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-bright);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
    var(--gradient-gaming);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(0, 217, 255, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(99, 102, 241, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(124, 58, 237, 0.7), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 136, 0.5), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(0, 217, 255, 0.4), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 1200px;
}

.hero-title {
  margin: 0 0 2rem 0;
  font-family: 'Inter', -apple-system, sans-serif;
}

.hero-title-main {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent-bright), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientText 3s ease-in-out infinite alternate;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
}

.hero-title-sub {
  display: block;
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 3rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 
    0 10px 30px rgba(0, 217, 255, 0.3),
    0 0 0 0 rgba(0, 217, 255, 0.5);
  position: relative;
  overflow: hidden;
}

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

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(0, 217, 255, 0.4),
    0 0 0 8px rgba(0, 217, 255, 0.1);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-bright);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(0, 217, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(0, 217, 255, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 217, 255, 0.2);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="rgba(0,217,255,0.4)"/><circle cx="25" cy="75" r="1" fill="rgba(124,58,237,0.3)"/><circle cx="75" cy="25" r="1" fill="rgba(0,255,136,0.2)"/></svg>') repeat;
  animation: float 25s infinite linear;
  pointer-events: none;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
}
.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero .cta {
  background: var(--primary);
  color: var(--background);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.4s both;
  border: 2px solid var(--primary);
}
.hero .cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 40px rgba(0, 217, 255, 0.6);
  filter: brightness(1.1);
  background: var(--gradient-primary);
}
.hero .cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.hero .cta:hover::before {
  left: 100%;
}

/* Sections */
.section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--text);
}
.section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--text-bright);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.6s ease-out;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2rem;
  color: var(--text-secondary);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--foreground-card);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  border: var(--border-subtle);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transform-origin: center;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3), 0 0 0 1px rgba(0, 217, 255, 0.1);
  border-color: var(--primary);
}
.card:hover::before {
  opacity: 1;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.02), rgba(99, 102, 241, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
.card h3 {
  margin: 0.75rem 0 0.5rem 0;
  font-size: 1.5rem;
}
.card p {
  margin: 0 0 1rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Enhanced Product Cards */
.product-card {
  position: relative;
  background: var(--foreground-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(99, 102, 241, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 217, 255, 0.3),
    0 0 0 1px rgba(0, 217, 255, 0.5);
  border-color: var(--primary);
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.console-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
  transition: all 0.3s ease;
}

.product-card:hover .console-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
}

.console-badge {
  position: absolute;
  top: -10px;
  right: -15px;
  background: linear-gradient(135deg, var(--accent-bright), #00ff88);
  color: var(--background);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
  animation: pulse 2s infinite;
}

.xbox-badge {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e) !important;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4) !important;
}

.card-content {
  flex-grow: 1;
  width: 100%;
}

.deposit-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 217, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.deposit-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.deposit-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--background-secondary);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.price-item:hover {
  border-color: rgba(0, 217, 255, 0.3);
  transform: translateX(5px);
}

.price-item.featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(99, 102, 241, 0.2));
  border-color: var(--accent);
}

.duration {
  font-weight: 600;
  color: var(--text-bright);
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.savings {
  position: absolute;
  top: -8px;
  right: 8px;
  background: var(--accent);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

.card-footer {
  margin-top: 2rem;
  width: 100%;
}

.button-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.button-primary:hover::before {
  left: 100%;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 217, 255, 0.4);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

/* Console-specific styling */
.ps5-card:hover {
  box-shadow: 
    0 25px 50px rgba(0, 112, 243, 0.3),
    0 0 0 1px rgba(0, 112, 243, 0.5);
}

.xbox-card:hover {
  box-shadow: 
    0 25px 50px rgba(16, 124, 16, 0.3),
    0 0 0 1px rgba(16, 124, 16, 0.5);
}

/* Console Search Bar */
.console-search-bar {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: var(--foreground-glass);
  border-radius: 20px;
  border: 1px solid rgba(0, 217, 255, 0.2);
  backdrop-filter: blur(20px);
  flex-wrap: wrap;
  align-items: stretch;
}

.search-container {
  position: relative;
  flex: 2;
  min-width: 250px;
  max-width: 600px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--background-secondary);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 50px;
  color: var(--text-bright);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
  background: var(--background-tertiary);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.filter-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.filter-select {
  padding: 0.75rem 1rem;
  background: var(--background-secondary);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  color: var(--text-bright);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
  white-space: nowrap;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
}

/* Console Grid */
.console-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.console-card {
  background: var(--foreground-glass);
  border-radius: 20px;
  border: 1px solid rgba(0, 217, 255, 0.2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(20px);
}

.console-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.3);
}

.console-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background-secondary), var(--background-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.console-image img {
  width: auto;
  height: 90%;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.console-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.console-card:hover .console-overlay {
  transform: translateY(0);
}

.overlay-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.overlay-content p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.placeholder-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.nintendo-bg {
  background: linear-gradient(135deg, #e60012, #ff6b6b);
}

.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.console-info {
  padding: 1.5rem;
}

.console-header {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

.console-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-bright);
}

.console-specs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.spec {
  padding: 0.3rem 0.8rem;
  background: rgba(0, 217, 255, 0.1);
  color: var(--primary);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.console-features {
  margin-bottom: 1.5rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(0, 217, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateX(5px);
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.rent-button, .notify-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.rent-button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.rent-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 217, 255, 0.4);
}

.notify-button {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-bright);
  border: 2px solid rgba(0, 217, 255, 0.3);
}

.notify-button:hover {
  background: rgba(0, 217, 255, 0.2);
  border-color: var(--primary);
}

.coming-soon-pricing {
  text-align: center;
  opacity: 0.7;
}

/* Add More Card */
.add-more-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border: 2px dashed rgba(0, 217, 255, 0.3);
  background: rgba(0, 217, 255, 0.05);
}

.add-more-content {
  text-align: center;
  color: var(--text-secondary);
}

.add-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.add-more-content h3 {
  margin: 0 0 1rem 0;
  color: var(--text-bright);
}

.add-more-content p {
  margin: 0 0 1.5rem 0;
  max-width: 200px;
}

.suggest-button {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.suggest-button:hover {
  background: var(--primary);
  color: white;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.no-results-content svg {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.no-results-content h3 {
  margin: 0 0 1rem 0;
  color: var(--text-bright);
}

.no-results-content p {
  margin: 0 0 2rem 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.clear-filters-button {
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear-filters-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Switch badge styling */
.switch-badge {
  background: linear-gradient(135deg, #e60012, #ff6b6b) !important;
  box-shadow: 0 5px 15px rgba(230, 0, 18, 0.4) !important;
}
.card ul {
  margin: 0.5rem 0 1rem 0;
  padding: 0;
  list-style: none;
}
.card ul li {
  margin-bottom: 0.25rem;
}
.button {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-bright);
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--primary);
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glow);
  transform-origin: center;
}
.button:hover {
  background: var(--gradient-gaming);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4), 0 0 0 2px rgba(0, 217, 255, 0.1);
  border-color: var(--primary);
}
.button:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.button:focus {
  outline: none;
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4), 0 0 0 3px rgba(0, 217, 255, 0.3);
}
.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.button:hover::before {
  width: 300px;
  height: 300px;
}

/* Form elements for product pages */
.form-group {
  margin-bottom: 1rem;
  width: 100%;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-bright);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: var(--border-subtle);
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--background-tertiary);
  color: var(--text-bright);
  position: relative;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2), 0 4px 12px rgba(0, 217, 255, 0.1);
  transform: translateY(-1px) scale(1.01);
  background: rgba(26, 26, 26, 0.98);
}
.form-group input:hover,
.form-group select:hover {
  border-color: rgba(0, 217, 255, 0.6);
  background: rgba(26, 26, 26, 0.95);
  transform: translateY(-0.5px);
}
.form-group input:valid:not(:placeholder-shown) {
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.2);
}
/* Disabled and readonly input styling with maximum specificity */
.form-group input[disabled],
.form-group input[readonly],
.form-group input[disabled][readonly] {
  background: var(--background-secondary) !important;
  color: #ffffff !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  border: 1px solid rgba(99, 102, 241, 0.5) !important;
  font-weight: 500 !important;
}

/* Specific targeting for end date fields */
input#ps5-end,
input#xbox-end {
  background: var(--background-secondary) !important;
  color: #ffffff !important;
  border: 1px solid rgba(99, 102, 241, 0.5) !important;
  opacity: 1 !important;
}

/* Cart */
.summary {
  background: var(--foreground-card);
  border: var(--border-subtle);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  backdrop-filter: blur(15px);
  color: var(--text);
}
.summary h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-bright);
}
.summary .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.summary .total {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
  color: var(--text-bright);
}

/* Footer */
.footer {
  padding: 2rem;
  text-align: center;
  background: var(--background-secondary);
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: var(--border-glow);
}
.footer a {
  color: var(--primary);
}
/* Product images (keeps your layout, just styles the photo) */
.product-img{
  display:block;
  max-width:100%;
  height:auto;
  margin:12px auto 8px;
  border-radius:12px;
  box-shadow:
    0 8px 28px rgba(0,0,0,.35),
    0 0 18px rgba(31,47,78,.25);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
}

.mobile-nav {
  display: none !important;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--foreground-glass);
  backdrop-filter: blur(15px);
  border-left: var(--border-glow);
  z-index: 100;
  transition: right 0.3s ease;
  padding: 2rem 1rem;
  box-shadow: -5px 0 25px rgba(99, 102, 241, 0.2);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav li {
  margin: 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(0, 217, 255, 0.1);
  color: var(--primary);
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(0, 217, 255, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
    position: relative;
  }
  
  .navbar ul {
    display: none;
  }
  
  /* Console Search Bar Mobile */
  .console-search-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .search-container {
    flex: none;
    min-width: 100%;
    max-width: none;
  }
  
  .filter-container {
    justify-content: space-between;
  }
  
  .filter-select {
    flex: 1;
    min-width: calc(50% - 0.5rem);
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-nav-overlay {
    display: block !important;
  }
  
  .mobile-nav {
    display: block !important;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .product-img {
    max-width: 280px;
    margin: 1rem auto;
  }
  
  .form-group {
    margin-bottom: 0.75rem;
  }
  
  .summary {
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .summary .item {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .navbar ul {
    justify-content: center;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero .cta {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .button {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1rem;
  }
  
  .form-group input,
  .form-group select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  from {
    transform: translateX(-100px);
  }
  to {
    transform: translateX(calc(100vw + 100px));
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Enhanced form styles with floating labels */
.floating-label-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.floating-label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  color: var(--muted);
  transition: all 0.2s ease;
  pointer-events: none;
  background: var(--foreground);
  padding: 0 0.25rem;
  font-size: 1rem;
}

.floating-label.active {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: var(--primary);
}

.floating-label-wrapper input:focus ~ .floating-label,
.floating-label-wrapper input:not(:placeholder-shown) ~ .floating-label {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: var(--primary);
}

/* Enhanced error states */
.form-group input.error,
.form-group select.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Scroll animations */
.animate-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Enhanced loading states */
.loading-state {
  position: relative;
  overflow: hidden;
}

.loading-state::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Gaming-specific animations */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 5px var(--accent-neon), 0 0 10px var(--accent-neon), 0 0 15px var(--accent-neon);
  }
  50% {
    box-shadow: 0 0 10px var(--accent-neon), 0 0 20px var(--accent-neon), 0 0 30px var(--accent-neon);
  }
}

@keyframes rgbShift {
  0% { filter: hue-rotate(0deg); }
  25% { filter: hue-rotate(90deg); }
  50% { filter: hue-rotate(180deg); }
  75% { filter: hue-rotate(270deg); }
  100% { filter: hue-rotate(360deg); }
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

/* New Hero Animations */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Enhanced Micro-interaction Animations */
@keyframes buttonPress {
  0% { transform: scale(1); }
  50% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

@keyframes hoverGlow {
  0% { box-shadow: 0 0 5px rgba(0, 217, 255, 0.3); }
  50% { box-shadow: 0 0 20px rgba(0, 217, 255, 0.6); }
  100% { box-shadow: 0 0 5px rgba(0, 217, 255, 0.3); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes elasticScale {
  0% { transform: scale(0.8); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes subtleBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-3px); }
  60% { transform: translateY(-2px); }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(5px);
  }
  66% {
    transform: translateY(5px) translateX(-5px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

/* Interactive Micro-interaction Classes */
.interact-bounce {
  animation: subtleBounce 0.6s ease;
}

.interact-scale {
  animation: elasticScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.interact-glow {
  animation: hoverGlow 1s ease-in-out;
}

.interact-slide-in-left {
  animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.interact-slide-in-right {
  animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.interact-scale-in {
  animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Loading States */
.loading-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-shimmer {
  position: relative;
  overflow: hidden;
}

.loading-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 1.5s infinite;
}

/* Success/Error State Animations */
.success-pulse {
  animation: pulse 0.5s ease-in-out;
  border-color: var(--accent-bright) !important;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2) !important;
}

.error-shake {
  animation: shake 0.5s ease-in-out;
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2) !important;
}

/* Stagger Animation Helper Classes */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Intersection Observer Classes */
.observe-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.observe-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.observe-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.observe-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.observe-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.observe-slide-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.observe-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.observe-slide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ====================================
   PS5 RENTAL PAGE REDESIGN STYLES
   ==================================== */

/* Console Hero Section */
.console-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.console-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ps5-hero .hero-gradient {
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #0066ff, #00d9ff, #ffffff);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

.ps5-particles {
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(0, 217, 255, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(0, 102, 255, 0.7), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
}

.console-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 1200px;
}

.console-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.badge-icon {
  font-size: 1.2rem;
}

.console-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.console-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

.console-hero-specs {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.spec-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.spec-icon {
  font-size: 1.2rem;
}

/* Main Rental Section */
.console-rental-section {
  padding: 4rem 0;
  background: var(--background);
}

.rental-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 4rem;
  align-items: start;
}

/* Left Side - Console Showcase */
.console-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.console-image-container {
  position: relative;
  background: linear-gradient(135deg, var(--background-secondary), var(--background-tertiary));
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.console-main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.console-image-container:hover .console-main-image {
  transform: scale(1.05);
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 3s infinite;
  pointer-events: none;
}

.ps5-glow {
  background: radial-gradient(circle, rgba(0, 217, 255, 0.4), transparent);
}

/* Feature Cards Grid */
.console-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--foreground-card);
  border: var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-icon.lightning { color: #ffd700; }
.feature-icon.haptic { color: #00d9ff; }
.feature-icon.audio { color: #7c3aed; }
.feature-icon.graphics { color: #ff6b6b; }

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-bright);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Right Side - Rental Form */
.rental-form-container {
  position: sticky;
  top: 100px;
}

.rental-form-card {
  background: var(--foreground-card);
  border: var(--border-subtle);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-card);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: var(--border-subtle);
}

.form-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Duration Selector */
.duration-selector {
  margin-bottom: 2rem;
}

.duration-options {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.duration-option {
  flex: 1;
  background: var(--background-tertiary);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.duration-option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.duration-option.selected {
  border-color: var(--primary);
  background: rgba(0, 217, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 217, 255, 0.3);
}

.duration-option.recommended::before {
  content: '⭐';
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-bright);
  color: var(--background);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.duration-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.duration-days {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}

.duration-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.duration-per-day {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Form Styling */
.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.label-icon {
  font-size: 1.1rem;
}

.date-input {
  width: 100%;
  padding: 1rem;
  background: var(--background-tertiary);
  border: 2px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-bright);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.date-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
  transform: translateY(-1px);
}

.date-input.readonly {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--primary);
  cursor: not-allowed;
}

/* Add-ons Section */
.addons-section {
  margin-bottom: 2rem;
}

.addon-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.addon-option {
  position: relative;
}

.addon-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.addon-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--background-tertiary);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.addon-checkbox:checked + .addon-label {
  border-color: var(--primary);
  background: rgba(0, 217, 255, 0.1);
}

.addon-label:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.addon-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.addon-details {
  flex: 1;
}

.addon-name {
  display: block;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.25rem;
}

.addon-description {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.addon-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Pricing Summary */
.pricing-summary {
  background: var(--background-secondary);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-line {
  display: flex;
  justify-content: between;
  align-items: center;
  font-size: 0.95rem;
}

.price-line span:first-child {
  color: var(--text-secondary);
}

.price-line span:last-child {
  font-weight: 600;
  color: var(--text-bright);
}

.deposit-line span:last-child {
  color: var(--text-muted);
}

.price-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0.5rem 0;
}

.total-line {
  font-size: 1.1rem;
  font-weight: 700;
}

.total-line span:last-child {
  color: var(--primary);
  font-size: 1.3rem;
}

.deposit-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.notice-icon {
  font-size: 1rem;
  color: var(--accent-bright);
}

/* Submit Button */
.rental-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 16px;
  padding: 1.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.rental-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4);
}

.rental-submit-btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.2rem;
}

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

.rental-submit-btn:hover .btn-glow {
  left: 100%;
}

/* Social Sharing Section */
.social-sharing-section {
  padding: 3rem 0;
  background: var(--background-secondary);
}

.social-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.social-container h3 {
  margin-bottom: 1.5rem;
  color: var(--text-bright);
}

.share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000000; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.copy { background: #6c5ce7; }

/* Reviews Section */
.reviews-section {
  padding: 3rem 0;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.write-review-container {
  text-align: center;
  margin: 2rem 0;
}

.review-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.review-filters select {
  padding: 0.75rem;
  background: var(--background-tertiary);
  border: var(--border-subtle);
  border-radius: 8px;
  color: var(--text-bright);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .rental-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .rental-form-container {
    position: static;
    order: -1;
  }
  
  .duration-options {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .console-hero-specs {
    flex-direction: column;
    gap: 1rem;
  }
  
  .spec-item {
    justify-content: center;
  }
  
  .console-features-grid {
    grid-template-columns: 1fr;
  }
  
  .rental-form-card {
    padding: 1.5rem;
  }
  
  .share-buttons {
    gap: 0.75rem;
  }
  
  .share-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* ====================================
   XBOX SPECIFIC THEMING
   ==================================== */

/* Xbox Hero Section */
.xbox-hero .hero-gradient {
  background: 
    radial-gradient(circle at 20% 80%, rgba(16, 124, 16, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #107c10, #00ff00, #32cd32);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

.xbox-particles {
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(16, 124, 16, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(0, 255, 0, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(50, 205, 50, 0.7), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
}

.xbox-hero .console-hero-title {
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.xbox-glow {
  background: radial-gradient(circle, rgba(16, 124, 16, 0.4), transparent);
}

/* Xbox Feature Icons */
.feature-icon.power { color: #00ff00; }
.feature-icon.resume { color: #107c10; }
.feature-icon.delivery { color: #32cd32; }
.feature-icon.gamepass { color: #00ff00; }

/* Xbox Button Styling */
.xbox-btn {
  background: linear-gradient(135deg, #107c10, #00ff00) !important;
}

.xbox-btn:hover {
  box-shadow: 0 8px 25px rgba(16, 124, 16, 0.4) !important;
}

/* ====================================
   NINTENDO SWITCH THEMING (for future)
   ==================================== */

/* Switch Hero Section */
.switch-hero .hero-gradient {
  background: 
    radial-gradient(circle at 20% 80%, rgba(230, 45, 126, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #e62d7e, #00aeef, #ff6900);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

.switch-particles {
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(230, 45, 126, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(0, 174, 239, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 105, 0, 0.7), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
}

.switch-hero .console-hero-title {
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.switch-glow {
  background: radial-gradient(circle, rgba(230, 45, 126, 0.4), transparent);
}

/* Switch Feature Icons */
.feature-icon.portable { color: #e62d7e; }
.feature-icon.docked { color: #00aeef; }
.feature-icon.joycon { color: #ff6900; }
.feature-icon.nintendo { color: #e62d7e; }

/* Switch Button Styling */
.switch-btn {
  background: linear-gradient(135deg, #e62d7e, #00aeef) !important;
}

.switch-btn:hover {
  box-shadow: 0 8px 25px rgba(230, 45, 126, 0.4) !important;
}

/* ====================================
   CHECKOUT PAGE REDESIGN
   ==================================== */

/* Checkout Hero Section */
.checkout-hero {
  position: relative;
  min-height: 40vh !important;
  max-height: 40vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--background);
  padding: 2rem 0 !important;
}

.checkout-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.checkout-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #00d9ff, #6366f1, #7c3aed);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

.checkout-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(0, 217, 255, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(99, 102, 241, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(124, 58, 237, 0.7), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
}

.checkout-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.checkout-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.checkout-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.checkout-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

/* Checkout Section */
.checkout-section {
  padding: 4rem 0;
  background: var(--background);
  min-height: 70vh;
  position: relative;
  z-index: 1;
  display: block !important;
  visibility: visible !important;
}

.checkout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex !important;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 2;
  visibility: visible !important;
}

@media (min-width: 1024px) {
  .checkout-container {
    display: grid !important;
    grid-template-columns: 1fr 400px;
    flex-direction: unset;
  }
}

/* Cart Content */
.cart-content {
  background: var(--foreground-card);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: block !important;
  visibility: visible !important;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: var(--border-subtle);
}

.cart-header h2 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.cart-stats {
  background: var(--gradient-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

/* Cart Items Grid */
.cart-items-grid {
  display: grid;
  gap: 1.5rem;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cart-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.3);
}

.cart-item-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--background);
}

.cart-item-image img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  padding: 0.5rem;
}

.console-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}

.console-badge.ps5 { background: #0066ff; }
.console-badge.xbox { background: #107c10; }

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.item-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.item-dates {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.item-addons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.addon-tag {
  background: rgba(0, 217, 255, 0.2);
  color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
}

.cart-item-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.item-price {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
}

.item-deposit {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.remove-item-btn {
  background: rgba(255, 59, 48, 0.2);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: #ff3b30;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-item-btn:hover {
  background: rgba(255, 59, 48, 0.3);
  transform: scale(1.1);
}

/* Empty Cart State */
.empty-cart-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.empty-cart-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-cart-state h3 {
  color: var(--text);
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.empty-cart-state p {
  margin: 0 0 2rem 0;
  color: var(--text-muted);
}

.browse-consoles-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.browse-consoles-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4);
}

/* Order Summary */
.order-summary {
  position: relative;
  top: auto;
  display: block !important;
  visibility: visible !important;
}

@media (min-width: 1024px) {
  .order-summary {
    position: sticky;
    top: 2rem;
  }
}

.summary-card {
  background: var(--foreground-card);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: block !important;
  visibility: visible !important;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: var(--border-subtle);
}

.summary-header h3 {
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(52, 199, 89, 0.2);
  color: #34c759;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.summary-breakdown {
  margin-bottom: 1.5rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--text-secondary);
}

.summary-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 1rem 0;
}

.summary-total {
  margin-bottom: 1.5rem;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: var(--border-subtle);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.total-amount {
  color: var(--primary);
}

.empty-summary {
  text-align: center;
  color: var(--text-muted);
  padding: 1rem 0;
}

/* Checkout Actions */
.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checkout-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.checkout-btn.primary {
  background: var(--gradient-primary);
  color: white;
}

.checkout-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4);
}

.checkout-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkout-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.checkout-btn:hover .btn-glow {
  left: 100%;
}

/* Checkout Features */
.checkout-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-icon {
  font-size: 1.2rem;
}

/* Trust Section */
.trust-section {
  background: var(--background-secondary);
  padding: 3rem 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.trust-container h3 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.trust-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.trust-content h4 {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}

.trust-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .order-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .checkout-hero {
    min-height: 50vh;
  }
  
  .cart-item-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cart-item-pricing {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .trust-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}

/* ====================================
   GENERIC CONSOLE THEMING VARIABLES
   ==================================== */

/* Console-specific CSS variable overrides for easy theming */
.console-hero.playstation-hero {
  --console-primary: #0066ff;
  --console-secondary: #00d9ff;
  --console-accent: #ffffff;
}

.console-hero.xbox-hero {
  --console-primary: #107c10;
  --console-secondary: #00ff00;
  --console-accent: #32cd32;
}

.console-hero.nintendo-hero {
  --console-primary: #e62d7e;
  --console-secondary: #00aeef;
  --console-accent: #ff6900;
}
