/* ==========================================================================
   Games4u - Star City Mall Karachi E-Commerce Storefront Stylesheet
   Dark Mode Gamer Theme | PlayStation Blue, Xbox Green & Nintendo Red Accents
   Strict Zanderio Compliance & Zero-Email Protocol
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-body: #07090e;
  --bg-surface: #0e121b;
  --bg-card: #141926;
  --bg-card-hover: #1c2436;
  --bg-elevated: #222c42;
  --border-subtle: #222c40;
  --border-glow: #2d3b59;
  
  /* Brand Accents */
  --ps-blue: #0070d1;
  --ps-blue-glow: rgba(0, 112, 209, 0.35);
  --ps-blue-light: #2997ff;
  
  --xbox-green: #107c10;
  --xbox-green-glow: rgba(16, 124, 16, 0.4);
  --xbox-green-light: #00e676;
  
  --nintendo-red: #e60012;
  --nintendo-red-glow: rgba(230, 0, 18, 0.35);
  --nintendo-red-light: #ff4757;

  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.3);

  --whatsapp-green: #25d366;
  --whatsapp-hover: #20ba59;

  /* Typography */
  --text-main: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Fonts */
  --font-heading: 'Rajdhani', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 25px rgba(0, 112, 209, 0.25);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Atmospheric Glow */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 20%;
  width: 60vw;
  height: 50vh;
  background: radial-gradient(circle, rgba(0, 112, 209, 0.08) 0%, rgba(16, 124, 16, 0.04) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
}

/* Announcement Top Ticker */
.top-ticker {
  background: linear-gradient(90deg, #07101e 0%, #0d1a33 50%, #0a1f18 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.5rem 0;
  font-size: 0.825rem;
  color: var(--text-secondary);
}

.top-ticker-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.live-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--xbox-green-light);
  box-shadow: 0 0 10px var(--xbox-green-light);
  animation: pulseAnimation 1.8s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.ticker-link {
  color: var(--ps-blue-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ticker-link:hover {
  text-decoration: underline;
  color: #fff;
}

/* Sticky Main Navigation */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(14, 18, 27, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.25rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  user-select: none;
}

.logo-crest {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0d223d 0%, #153258 50%, #0c3527 100%);
  border: 1px solid var(--ps-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--ps-blue-glow);
  position: relative;
  overflow: hidden;
}

.logo-crest::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: rotate(25deg);
  animation: shimmerLogo 4s infinite;
}

@keyframes shimmerLogo {
  0% { transform: translateX(-100%) rotate(25deg); }
  30%, 100% { transform: translateX(100%) rotate(25deg); }
}

.logo-icon-svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  filter: drop-shadow(0 0 4px var(--ps-blue-light));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff 0%, #a6d4ff 60%, #00e676 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.4rem 0.2rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ps-blue), var(--xbox-green-light));
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Search Bar */
.search-wrapper {
  position: relative;
  flex: 1;
  max-width: 320px;
}

.search-input {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 0.55rem 1rem 0.55rem 2.4rem;
  color: #fff;
  outline: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--ps-blue);
  box-shadow: 0 0 12px var(--ps-blue-glow);
  background-color: #161e30;
}

.search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: var(--text-dim);
  pointer-events: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.phone-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 112, 209, 0.12);
  border: 1px solid rgba(0, 112, 209, 0.35);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.phone-badge-btn:hover {
  background-color: var(--ps-blue);
  box-shadow: 0 0 15px var(--ps-blue-glow);
  transform: translateY(-1px);
}

.cart-trigger-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #fff;
  transition: var(--transition);
}

.cart-trigger-btn:hover {
  border-color: var(--xbox-green-light);
  box-shadow: 0 0 12px var(--xbox-green-glow);
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, var(--nintendo-red), #ff6b81);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-surface);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 3.5rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14,18,27,0.7) 0%, rgba(7,9,14,0.95) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 124, 16, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--xbox-green-light);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-title .gradient-text-ps {
  background: linear-gradient(90deg, #38bdf8 0%, #0070d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .gradient-text-xbox {
  background: linear-gradient(90deg, #00e676 0%, #107c10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  max-width: 580px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--ps-blue) 0%, #0056a3 100%);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px var(--ps-blue-glow);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0084f7 0%, var(--ps-blue) 100%);
  box-shadow: 0 6px 25px rgba(0, 112, 209, 0.5);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, #1da851 100%);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae771 0%, var(--whatsapp-green) 100%);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
}

.btn-secondary:hover {
  background-color: var(--bg-card-hover);
  color: #fff;
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

/* Store Verification Card (Hero Right) */
.store-assurance-card {
  background: linear-gradient(145deg, rgba(20, 25, 38, 0.9) 0%, rgba(14, 18, 27, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card), 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.store-assurance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ps-blue), var(--xbox-green-light), var(--nintendo-red));
}

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

.google-rating-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.star-rating-score {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.stars-row {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.reviews-count-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.physical-badge {
  background-color: rgba(0, 112, 209, 0.15);
  border: 1px solid rgba(0, 112, 209, 0.4);
  color: var(--ps-blue-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.assurance-address-box {
  background-color: rgba(9, 11, 16, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.address-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--xbox-green-light);
  margin-bottom: 0.4rem;
}

.address-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.timing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-subtle);
}

.timing-highlight {
  color: var(--xbox-green-light);
  font-weight: 600;
}

.assurance-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.assurance-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-check-icon {
  width: 16px;
  height: 16px;
  fill: var(--xbox-green-light);
  flex-shrink: 0;
}

/* Trust Bar Strip */
.trust-strip {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-box svg {
  width: 22px;
  height: 22px;
  fill: var(--ps-blue-light);
}

.trust-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.trust-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section Headers & Filter Controls
   ========================================================================== */
.section-wrapper {
  padding: 4rem 0;
  position: relative;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ps-blue-light);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem;
  border-radius: var(--radius-xl);
  overflow-x: auto;
}

.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: var(--transition);
}

.filter-btn:hover {
  color: #fff;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--ps-blue) 0%, #005bb5 100%);
  color: #fff;
  box-shadow: 0 2px 10px var(--ps-blue-glow);
}

/* ==========================================================================
   Product Grid & Product Cards
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card), 0 0 20px rgba(0, 112, 209, 0.2);
}

/* Card Image Header */
.card-media-wrapper {
  position: relative;
  width: 100%;
  padding-top: 72%;
  background-color: #0d111a;
  overflow: hidden;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .card-image {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.card-badge.ps-blue {
  background-color: rgba(0, 112, 209, 0.9);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 112, 209, 0.4);
}

.card-badge.xbox-green {
  background-color: rgba(16, 124, 16, 0.9);
  color: #fff;
  box-shadow: 0 0 10px rgba(16, 124, 16, 0.4);
}

.card-badge.nintendo-red {
  background-color: rgba(230, 0, 18, 0.9);
  color: #fff;
  box-shadow: 0 0 10px rgba(230, 0, 18, 0.4);
}

.card-badge.accent-gold {
  background-color: rgba(245, 158, 11, 0.9);
  color: #000;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.stock-indicator {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(10, 14, 22, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--xbox-green-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--xbox-green-light);
}

/* Card Body */
.card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.card-brand {
  color: var(--ps-blue-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fbbf24;
  font-weight: 600;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3.15rem;
}

.card-specs-preview {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Card Price & Action */
.card-footer-action {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
}

.original-price {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.card-buttons-group {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 0.5rem;
}

.btn-card-quickview {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-card-quickview:hover {
  background-color: var(--bg-elevated);
  color: #fff;
  border-color: var(--ps-blue);
}

.btn-card-add {
  background: linear-gradient(135deg, var(--ps-blue) 0%, #0059b3 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-card-add:hover {
  background: linear-gradient(135deg, #0084f7 0%, var(--ps-blue) 100%);
  box-shadow: 0 4px 15px var(--ps-blue-glow);
}

/* ==========================================================================
   Storefront Physical Hub Section (Star City Mall Karachi)
   ========================================================================== */
.store-hub-section {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-body) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 4.5rem 0;
}

.hub-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
}

.hub-info-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--xbox-green-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.hub-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hub-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.hub-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.hub-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hub-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ps-blue-light);
}

.hub-icon-circle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hub-detail-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.hub-detail-item p, .hub-detail-item a {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}

.hub-actions-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Map Card Right */
.hub-map-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-embed-wrapper {
  flex: 1;
  min-height: 320px;
  position: relative;
  background-color: #0b0e14;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(100%);
}

.map-footer-banner {
  padding: 1rem 1.5rem;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.map-landmark {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   Gamer Reviews Section (379 Google Reviews Showcase)
   ========================================================================== */
.reviews-section {
  padding: 4.5rem 0;
}

.reviews-summary-bar {
  background: linear-gradient(135deg, rgba(20, 25, 38, 0.8) 0%, rgba(14, 18, 27, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.summary-score-col {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.big-rating-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.score-details h4 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.score-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.reviewer-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.reviewer-city {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  background-color: rgba(16, 124, 16, 0.15);
  color: var(--xbox-green-light);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 124, 16, 0.3);
}

.review-stars-row {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.review-comment {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.review-item-tag {
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   Policies & Warranty Accordion
   ========================================================================== */
.policy-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.policy-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.policy-icon-header {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(0, 112, 209, 0.15);
  color: var(--ps-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.policy-icon-header svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.policy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.policy-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Footer (Zanderio Hard Requirements Compliance)
   ========================================================================== */
.main-footer {
  background-color: #05070a;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-brand-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-address-block {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.footer-address-block strong {
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-nav-list li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.86rem;
}

.footer-contact-box svg {
  width: 18px;
  height: 18px;
  fill: var(--ps-blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-phone-link {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.footer-phone-link:hover {
  color: var(--ps-blue-light);
}

.zero-email-notice {
  background: rgba(16, 124, 16, 0.1);
  border: 1px dashed rgba(0, 230, 118, 0.3);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.zero-email-notice strong {
  color: var(--xbox-green-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-compliance-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255,255,255,0.05);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  color: var(--text-secondary);
}

/* ==========================================================================
   Slide-out Shopping Cart Drawer
   ========================================================================== */
.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.7);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

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

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-card);
  color: var(--text-muted);
  font-size: 1.25rem;
  border: 1px solid var(--border-subtle);
}

.close-btn:hover {
  color: #fff;
  background-color: var(--bg-elevated);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
  gap: 0.75rem;
}

.cart-empty-state svg {
  width: 56px;
  height: 56px;
  fill: var(--text-dim);
}

.cart-item {
  display: flex;
  gap: 1rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  position: relative;
}

.cart-item-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background-color: #000;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.cart-item-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ps-blue-light);
}

.cart-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.qty-btn:hover {
  background-color: var(--bg-elevated);
}

.qty-number {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.btn-item-remove {
  color: var(--nintendo-red-light);
  font-size: 0.78rem;
  background: none;
  border: none;
  cursor: pointer;
}

.btn-item-remove:hover {
  text-decoration: underline;
}

/* Cart Footer & Summary */
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background-color: var(--bg-surface);
}

.delivery-choice-box {
  margin-bottom: 1rem;
}

.delivery-choice-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
  display: block;
}

.delivery-selector {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 0.55rem;
  border-radius: var(--radius-sm);
  outline: none;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.cart-summary-line.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  border-top: 1px dashed var(--border-subtle);
  padding-top: 0.6rem;
  margin-top: 0.6rem;
}

.btn-checkout-proceed {
  width: 100%;
  background: linear-gradient(135deg, var(--xbox-green) 0%, #0c610c 100%);
  color: #fff;
  padding: 0.95rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  box-shadow: 0 4px 18px var(--xbox-green-glow);
}

.btn-checkout-proceed:hover {
  background: linear-gradient(135deg, var(--xbox-green-light) 0%, var(--xbox-green) 100%);
  transform: translateY(-2px);
}

/* ==========================================================================
   Modals (Quick View, Checkout, Order Confirmation)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-content-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-backdrop.open .modal-content-card {
  transform: scale(1);
}

.modal-close-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
}

.modal-close-icon:hover {
  color: #fff;
  background-color: var(--bg-elevated);
}

/* Quick View Specific Layout */
.quickview-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.75rem;
  padding: 2rem;
}

.quickview-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #0b0e16;
  border: 1px solid var(--border-subtle);
}

.quickview-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.quickview-info h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.quickview-price-tag {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ps-blue-light);
  margin-bottom: 1rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.specs-table td {
  padding: 0.45rem 0;
  vertical-align: top;
}

.specs-table td:first-child {
  color: var(--text-dim);
  font-weight: 600;
  width: 32%;
}

.specs-table td:last-child {
  color: var(--text-secondary);
}

.quickview-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Checkout Form Layout (Zero-Email Strict) */
.checkout-modal-body {
  padding: 2rem;
}

.checkout-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

.checkout-header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.checkout-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-label span.req {
  color: var(--nintendo-red-light);
}

.form-control {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  color: #fff;
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--ps-blue);
  box-shadow: 0 0 10px var(--ps-blue-glow);
}

.checkout-notice-card {
  background: rgba(0, 112, 209, 0.08);
  border: 1px solid rgba(0, 112, 209, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  margin: 1.25rem 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.checkout-order-summary-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 1.5rem;
}

/* Order Confirmation Modal Layout */
.confirmation-card-body {
  padding: 2.5rem 2rem;
  text-align: center;
}

.success-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(16, 124, 16, 0.2);
  border: 2px solid var(--xbox-green-light);
  color: var(--xbox-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 25px var(--xbox-green-glow);
}

.success-icon-badge svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.confirmation-card-body h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.order-id-highlight {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ps-blue-light);
  font-weight: 700;
  background-color: var(--bg-card);
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.receipt-breakdown {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.75rem;
  font-size: 0.88rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border-subtle);
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-row.bold {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  padding-top: 0.6rem;
}

/* Floating WhatsApp Widget */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, #1da851 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  z-index: 150;
  transition: var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Mobile Sticky Action Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(14, 18, 27, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.6rem 1rem;
  z-index: 100;
  justify-content: space-around;
  align-items: center;
}

.mobile-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.mobile-bar-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mobile-bar-item.active {
  color: var(--ps-blue-light);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--xbox-green-light);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  animation: slideInToast 0.3s ease forwards;
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .store-assurance-card {
    max-width: 600px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hub-layout {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-ticker {
    display: none;
  }
  .nav-menu, .search-wrapper, .phone-badge-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .quickview-layout {
    grid-template-columns: 1fr;
  }
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .mobile-bottom-bar {
    display: flex;
  }
  .floating-whatsapp-btn {
    bottom: 4.8rem;
    right: 1.2rem;
  }
  body {
    padding-bottom: 60px;
  }
}
