/* ==============================================================================
   GAMES PLANET - OFFICIAL STYLESHEET
   Aesthetic: Premium Gamer / Esports Dark Mode with Neon Chroma Accents
   Physical Store: Rania Mall, Bank Rd, Saddar, Rawalpindi, 46000, Pakistan
   Official Phone / WhatsApp: +92 313 8234531 (Strictly Zero Email)
   ============================================================================== */

:root {
  --bg-primary: #08090d;
  --bg-secondary: #0e1118;
  --bg-card: #131722;
  --bg-card-hover: #191f2e;
  --bg-glass: rgba(14, 17, 24, 0.85);
  --bg-elevated: #1a2030;
  
  --border-color: #232a3d;
  --border-glow: rgba(0, 255, 102, 0.4);
  --border-cyan-glow: rgba(0, 240, 255, 0.4);
  
  --neon-green: #00ff66;
  --neon-green-glow: 0 0 15px rgba(0, 255, 102, 0.45);
  --neon-cyan: #00f0ff;
  --neon-cyan-glow: 0 0 15px rgba(0, 240, 255, 0.45);
  --neon-pink: #ff1e56;
  --neon-yellow: #ffb800;
  
  --text-main: #f0f3f8;
  --text-muted: #9aa4b8;
  --text-dark: #626d82;
  
  --font-display: 'Rajdhani', 'Orbitron', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-neon: 0 4px 20px rgba(0, 255, 102, 0.25);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

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

/* Subtle Cyber Grid Background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

/* ==============================================================================
   TOP ANNOUNCEMENT BAR (PHYSICAL STORE PROOF & PHONE)
   ============================================================================== */
.top-bar {
  background: linear-gradient(90deg, #090e18 0%, #111a2e 50%, #090e18 100%);
  border-bottom: 1px solid rgba(0, 255, 102, 0.2);
  font-size: 0.825rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 50;
}

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

.top-bar-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.top-bar-location strong {
  color: var(--neon-green);
}

.top-bar-badge {
  background: rgba(0, 255, 102, 0.12);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 102, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.top-link:hover {
  color: var(--neon-cyan);
}

.top-link.phone-highlight {
  color: var(--neon-green);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ==============================================================================
   STICKY MAIN HEADER & LOGO
   ============================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1.5rem;
}

/* Aggressive Gaming Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #101929, #080d14);
  border: 1px solid var(--neon-green);
  box-shadow: var(--neon-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.25), transparent);
  pointer-events: none;
}

.logo-svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 6px var(--neon-green));
}

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

.brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, var(--neon-green) 70%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  font-weight: 700;
  margin-top: 2px;
}

/* Nav links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  position: relative;
  padding: 0.35rem 0;
  transition: var(--transition);
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  box-shadow: var(--neon-green-glow);
  transition: width 0.25s ease;
}

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

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

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 12px;
  color: var(--text-dark);
  pointer-events: none;
  width: 18px;
  height: 18px;
}

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

.search-input:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.25);
  background: #161c29;
}

.search-clear {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  display: none;
  padding: 2px;
}

.search-clear:hover {
  color: #fff;
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid rgba(0, 255, 102, 0.3);
  color: var(--neon-green);
  font-size: 0.825rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-header-call:hover {
  background: var(--neon-green);
  color: #000;
  box-shadow: var(--neon-green-glow);
}

.cart-trigger-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.cart-trigger-btn:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
}

.cart-badge {
  background: var(--neon-pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.mobile-menu-btn {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==============================================================================
   HERO SECTION (ESPORTS THEME & PHYSICAL STORE PROOF)
   ============================================================================== */
.hero-section {
  position: relative;
  padding: 3.5rem 0 3rem;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.12) 0%, rgba(0, 240, 255, 0.08) 50%, transparent 80%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
}

.badge-pill.mall-badge {
  background: rgba(0, 240, 255, 0.12);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 240, 255, 0.35);
}

.badge-pill.rating-pill {
  background: rgba(255, 184, 0, 0.12);
  color: var(--neon-yellow);
  border: 1px solid rgba(255, 184, 0, 0.35);
}

.badge-pill.status-open {
  background: rgba(0, 255, 102, 0.12);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 102, 0.35);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title .glow-green {
  color: var(--neon-green);
  text-shadow: 0 0 25px rgba(0, 255, 102, 0.5);
}

.hero-title .glow-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

.hero-description strong {
  color: #fff;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--neon-green);
  color: #080a0f;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--neon-green-glow);
  transition: var(--transition);
}

.btn-primary:hover {
  background: #26ff7b;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--bg-card);
  color: #fff;
  border: 1px solid var(--border-color);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: #182030;
  box-shadow: var(--neon-cyan-glow);
}

/* Hero Showcase Card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: linear-gradient(145deg, #131826 0%, #0c0f17 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan), var(--neon-pink));
}

.hero-media-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-card:hover .hero-media-wrap img {
  transform: scale(1.03);
}

.hero-tag-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.5rem;
  text-align: center;
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat-lbl {
  font-size: 0.65rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ==============================================================================
   VERIFIED PROOF & TRUST STRIP
   ============================================================================== */
.trust-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
  margin: 1.5rem 0 3rem;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid rgba(0, 255, 102, 0.25);
  color: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item:nth-child(2) .trust-icon-box {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.25);
  color: var(--neon-cyan);
}

.trust-item:nth-child(3) .trust-icon-box {
  background: rgba(255, 184, 0, 0.08);
  border-color: rgba(255, 184, 0, 0.25);
  color: var(--neon-yellow);
}

.trust-info h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-info p {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ==============================================================================
   SECTION HEADERS
   ============================================================================== */
.section-header {
  margin-bottom: 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.section-eyebrow {
  color: var(--neon-green);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
}

/* Category Filter Tabs */
.category-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.filter-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.filter-chip:hover {
  background: var(--bg-card-hover);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-chip.active {
  background: var(--neon-green);
  color: #080a0f;
  border-color: var(--neon-green);
  font-weight: 800;
  box-shadow: 0 0 14px rgba(0, 255, 102, 0.35);
}

.filter-chip .chip-count {
  font-size: 0.7rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}

.filter-chip.active .chip-count {
  background: rgba(0, 0, 0, 0.3);
  color: #080a0f;
}

/* ==============================================================================
   PRODUCT GRID & 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-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 102, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 102, 0.15);
}

.product-image-box {
  position: relative;
  width: 100%;
  height: 220px;
  background: #090c12;
  overflow: hidden;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-badge-corner {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(8, 10, 15, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}

.product-stock-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 255, 102, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 255, 102, 0.35);
  color: var(--neon-green);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 6px var(--neon-green);
}

.quick-view-trigger {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(14, 17, 24, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.9;
  transition: var(--transition);
}

.quick-view-trigger:hover {
  background: var(--neon-cyan);
  color: #000;
  border-color: var(--neon-cyan);
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-lbl {
  font-size: 0.725rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0.35rem 0 0.5rem;
  color: #fff;
  min-height: 2.8rem;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  margin-bottom: 0.65rem;
}

.stars-gold {
  color: var(--neon-yellow);
}

.rating-num {
  font-weight: 700;
  color: #fff;
}

.reviews-cnt {
  color: var(--text-dark);
}

.product-desc-snippet {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 1rem;
  flex: 1;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--neon-green);
  letter-spacing: 0.5px;
}

.product-orig-price {
  font-size: 0.825rem;
  color: var(--text-dark);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.35);
  color: var(--neon-green);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--neon-green);
  color: #080a0f;
  box-shadow: var(--neon-green-glow);
}

/* ==============================================================================
   VERIFIED GOOGLE REVIEWS SECTION (522 REVIEWS PROOF)
   ============================================================================== */
.reviews-section {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 17, 24, 0.7) 100%);
  border-top: 1px solid var(--border-color);
}

.reviews-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.google-badge-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.google-icon-svg {
  width: 48px;
  height: 48px;
}

.google-rating-huge {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.google-stars {
  color: var(--neon-yellow);
  font-size: 1.25rem;
  margin-top: 3px;
}

.google-stats-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.google-stats-text strong {
  color: var(--neon-green);
}

.reviews-proof-bullets {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-pill svg {
  color: var(--neon-green);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.reviewer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.reviewer-badge {
  font-size: 0.7rem;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 2px;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-dark);
}

.review-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

/* ==============================================================================
   PHYSICAL STORE & LOCATION HUB (RANIA MALL, RAWALPINDI)
   ============================================================================== */
.store-hub-section {
  padding: 4rem 0;
  position: relative;
}

.store-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
}

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

.store-address-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.address-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.address-details h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.address-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.address-details a.phone-link {
  color: var(--neon-green);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-top: 2px;
}

.address-details a.phone-link:hover {
  text-decoration: underline;
}

.store-actions-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Map Interactive Container */
.map-visual-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.map-header {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-plus-code {
  font-size: 0.75rem;
  background: rgba(0, 255, 102, 0.12);
  color: var(--neon-green);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.map-iframe-wrap {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(90%);
}

/* ==============================================================================
   FOOTER (FULL ADDRESS, HOURS, POLICIES & NO EMAIL)
   ============================================================================== */
.main-footer {
  background: #050608;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  color: var(--neon-green);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--neon-green);
  font-weight: 700;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--neon-green);
}

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

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}

.footer-link:hover {
  color: var(--neon-cyan);
  padding-left: 4px;
}

.footer-hours-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.hours-status-open {
  color: var(--neon-green);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.775rem;
  color: var(--text-dark);
}

.footer-bottom strong {
  color: var(--text-muted);
}

/* ==============================================================================
   CART SLIDE-OVER DRAWER
   ============================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

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

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

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

.drawer-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.drawer-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Shipping Progress Indicator */
.cart-free-shipping-bar {
  background: rgba(0, 240, 255, 0.08);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  padding: 0.75rem 1.5rem;
  font-size: 0.775rem;
  color: var(--neon-cyan);
}

.shipping-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-top: 6px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
  width: 0%;
  transition: width 0.3s ease;
}

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

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

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

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

.cart-item-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  padding-right: 1.5rem;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--neon-green);
}

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

.qty-control {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.qty-val {
  width: 28px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-item-del {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px;
}

.cart-item-del:hover {
  color: var(--neon-pink);
}

/* Empty Cart State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.cart-empty-state svg {
  color: var(--text-dark);
  width: 64px;
  height: 64px;
}

.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.cart-subtotal-row strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--neon-green);
  font-weight: 900;
}

.btn-drawer-checkout {
  width: 100%;
  padding: 0.85rem;
  font-size: 1.05rem;
}

/* ==============================================================================
   CHECKOUT MODAL (STRICT ZERO-EMAIL PROTOCOL)
   ============================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  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-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  position: relative;
}

.modal-header {
  padding: 1.25rem 1.75rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.35rem;
}

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

.modal-body {
  padding: 1.75rem;
}

/* Checkout Form Styles (Strictly Phone Number & No Email) */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.form-label span.req {
  color: var(--neon-pink);
}

.form-label small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: normal;
  margin-left: 4px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.25);
  background: #151a26;
}

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

/* Delivery options radio cards */
.radio-cards-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.radio-card {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.radio-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.radio-card input {
  display: none;
}

.radio-card.selected {
  border-color: var(--neon-green);
  background: rgba(0, 255, 102, 0.08);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

.radio-card-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.radio-card-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.checkout-summary-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.checkout-summary-row.total-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.65rem;
  margin-top: 0.65rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.checkout-summary-row.total-row span:last-child {
  color: var(--neon-green);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

/* Order Confirmation Screen */
.order-success-box {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 255, 102, 0.15);
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--neon-green-glow);
}

.order-id-badge {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  background: var(--bg-card);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.order-instructions {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.5;
}

.order-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.order-whatsapp-btn:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

/* ==============================================================================
   QUICK VIEW MODAL
   ============================================================================== */
.quickview-box {
  max-width: 820px;
}

.quickview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.quickview-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #000;
}

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

.quickview-content {
  display: flex;
  flex-direction: column;
}

.quickview-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin: 1rem 0;
}

.quickview-specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quickview-specs-table td {
  padding: 0.4rem 0.2rem;
}

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

.quickview-specs-table td:last-child {
  color: #fff;
  font-weight: 700;
}

/* ==============================================================================
   FLOATING WIDGETS (WHATSAPP & PHONE - STRICTLY +92 313 8234531)
   ============================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 150;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.floating-call {
  background: #0070d1;
  box-shadow: 0 4px 20px rgba(0, 112, 209, 0.4);
}

.floating-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(14, 17, 24, 0.95);
  border: 1px solid var(--border-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 85px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 400;
  pointer-events: none;
}

.toast-item {
  background: var(--bg-card);
  border: 1px solid var(--neon-green);
  box-shadow: var(--neon-green-glow);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  pointer-events: auto;
  animation: slideInRight 0.3s ease forwards;
}

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

/* ==============================================================================
   RESPONSIVE DESIGN & MEDIA QUERIES
   ============================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .store-hub-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }
  .header-nav {
    display: none;
  }
  .header-search {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .quickview-grid {
    grid-template-columns: 1fr;
  }
  .quickview-img-wrap img {
    height: 240px;
  }
  .radio-cards-group {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
