/* ==========================================================================
   Mian Tech & Traders - Official E-Commerce Stylesheet
   Verified Retail Electronics Store - Bhatti Plaza, Main Pecco Road, Lahore
   Zanderio Compliance & Premium Tech UI Architecture
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #38bdf8;
  --accent: #2563eb;
  --accent-glow: rgba(37, 99, 235, 0.25);
  
  /* Dark Tech Surfaces */
  --bg-dark: #0b0f19;
  --bg-dark-secondary: #111827;
  --bg-dark-card: #1f2937;
  --bg-surface: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-muted: #f1f5f9;

  /* Text & Typography */
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Accents & Trust Indicators */
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.12);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.12);
  --danger: #ef4444;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe57;

  /* Borders & Shadows */
  --border-color: #e2e8f0;
  --border-dark: #374151;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 35px -10px rgba(0, 0, 0, 0.15);

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-subtle);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.top-ticker {
  background: #090d16;
  color: #cbd5e1;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
  position: relative;
  z-index: 50;
}

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

.ticker-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ticker-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ticker-badge .pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #34d399;
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

.ticker-text strong {
  color: #fff;
}

.ticker-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ticker-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
  font-size: 0.8125rem;
  transition: color var(--transition-fast);
}

.ticker-link:hover {
  color: #38bdf8;
}

.ticker-link i {
  font-size: 0.875rem;
  color: #38bdf8;
}

/* ==========================================================================
   Sticky Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
}

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

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

.brand-icon-box {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0284c7, #1d4ed8);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

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

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b0f19;
  line-height: 1.15;
}

.brand-title span {
  color: #0284c7;
}

.brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Header Search */
.header-search-wrap {
  flex: 1;
  max-width: 440px;
  position: relative;
  margin: 0 1rem;
}

.header-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-box i {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.header-search-input {
  width: 100%;
  padding: 0.65rem 2.4rem 0.65rem 2.6rem;
  background: var(--bg-muted);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.header-search-input:focus {
  outline: none;
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.search-clear-btn {
  position: absolute;
  right: 0.85rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: none;
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  padding: 0.4rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

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

.action-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: #f1f5f9;
  color: #0f172a;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8125rem;
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.action-call-btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
  color: var(--primary);
}

.cart-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #0f172a;
  color: #ffffff;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
  position: relative;
}

.cart-trigger-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.cart-badge {
  background: #0284c7;
  color: #ffffff;
  font-size: 0.75rem;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  font-weight: 800;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.35rem;
  color: #0f172a;
  padding: 0.4rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background: linear-gradient(135deg, #090d16 0%, #0f172a 60%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4.5rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.18) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.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-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #38bdf8;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  width: fit-content;
}

.hero-title {
  font-size: 2.85rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #38bdf8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.0625rem;
  color: #cbd5e1;
  max-width: 540px;
  line-height: 1.6;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.store-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: #e2e8f0;
}

.store-badge-item i {
  color: #38bdf8;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0284c7, #2563eb);
  color: #ffffff;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
  transition: all var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
  background: linear-gradient(135deg, #0369a1, #1d4ed8);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-normal);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.hero-card-stack {
  position: relative;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}

.featured-product-spotlight {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0b0f19;
}

.spotlight-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-product-spotlight:hover .spotlight-img {
  transform: scale(1.04);
}

.spotlight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.6) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.spotlight-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
}

.spotlight-info p {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.spotlight-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #38bdf8;
  white-space: nowrap;
}

/* Floating Trust Badge */
.hero-floating-trust {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  color: var(--text-main);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  animation: floatBounce 4s ease-in-out infinite;
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fef3c7;
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.trust-badge-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  color: #0f172a;
}

.trust-badge-text span {
  font-size: 0.75rem;
  color: #64748b;
}

/* ==========================================================================
   Trust Pillars & Store Highlights
   ========================================================================== */
.trust-pillars-section {
  padding: 2rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

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

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.pillar-item:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pillar-item:nth-child(2) .pillar-icon {
  background: #ecfdf5;
  color: #10b981;
}

.pillar-item:nth-child(3) .pillar-icon {
  background: #fef3c7;
  color: #d97706;
}

.pillar-item:nth-child(4) .pillar-icon {
  background: #ede9fe;
  color: #7c3aed;
}

.pillar-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.pillar-text p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Section Header Standard
   ========================================================================== */
.section-head-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Product Catalog & Filters
   ========================================================================== */
.catalog-section {
  padding: 4.5rem 0;
}

.catalog-controls-bar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

/* Category Filter Pills */
.category-pills-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.category-pills-row::-webkit-scrollbar {
  height: 4px;
}
.category-pills-row::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.cat-pill-btn {
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: #475569;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.cat-pill-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

.cat-pill-btn.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.cat-pill-btn .count-badge {
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.72rem;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.cat-pill-btn.active .count-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Secondary Filter Bar */
.catalog-secondary-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.results-count-text {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
}

.results-count-text strong {
  color: #0f172a;
}

.filter-actions-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-select-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #475569;
}

.custom-select {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #ffffff;
  color: #0f172a;
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.custom-select:focus {
  border-color: var(--primary);
}

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

.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f1f5f9;
  overflow: hidden;
}

.product-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-thumbnail[src*="usb-flash-drive"],
.product-thumbnail[src*="powerbank"] {
  object-fit: contain;
  padding: 10px;
  background: #ffffff;
}

.product-card:hover .product-thumbnail {
  transform: scale(1.05);
}

.badge-tag-wrap {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}

.badge-custom {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-custom.best-seller {
  background: #0f172a;
  color: #ffffff;
}

.badge-custom.flagship {
  background: #7c3aed;
  color: #ffffff;
}

.badge-custom.popular-value {
  background: #0284c7;
  color: #ffffff;
}

.badge-custom.drop-tested {
  background: #dc2626;
  color: #ffffff;
}

.badge-custom.gan-fast-tech {
  background: #059669;
  color: #ffffff;
}

.quick-view-hover-btn {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transition: all var(--transition-fast);
  z-index: 3;
}

.product-card:hover .quick-view-hover-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.quick-view-hover-btn:hover {
  background: #0284c7;
}

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

.card-category-stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.card-category-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #15803d;
}

.pulse-dot-sm {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

.product-title-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title-link:hover {
  color: var(--primary);
}

.product-short-spec {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Rating Row */
.card-rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}

.stars-gold {
  color: #f59e0b;
  display: inline-flex;
  gap: 0.1rem;
}

.rating-score {
  font-weight: 700;
  color: #0f172a;
}

.review-tally {
  color: #94a3b8;
  font-size: 0.75rem;
}

/* Price & Action Row */
.card-footer-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-color);
  gap: 0.5rem;
}

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

.current-pkr-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
}

.original-pkr-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #94a3b8;
  font-weight: 500;
}

.add-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: #0f172a;
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.add-cart-btn:hover {
  background: #0284c7;
  transform: translateY(-1px);
}

.add-cart-btn i {
  font-size: 0.85rem;
}

/* No Results State */
.no-results-box {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-color);
}

.no-results-box i {
  font-size: 3rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.no-results-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.no-results-box p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Customer Reviews Section (Zanderio 5.0 Star Proof)
   ========================================================================== */
.reviews-section {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reviews-summary-bar {
  background: var(--bg-dark);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-xl);
}

.summary-score-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 1.5rem;
}

.huge-score {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: #38bdf8;
  letter-spacing: -0.04em;
}

.score-details-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stars-score-large {
  color: #f59e0b;
  font-size: 1.25rem;
  display: flex;
  gap: 0.2rem;
}

.score-sub {
  font-size: 0.875rem;
  color: #cbd5e1;
}

.summary-proof-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.summary-proof-text p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.55;
}

.verified-store-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #34d399;
  font-weight: 700;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

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

.review-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

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

.author-meta-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7, #2563eb);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.author-info-col h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.author-location {
  font-size: 0.78rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.verified-purchase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.review-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.review-date-text {
  font-size: 0.75rem;
  color: #94a3b8;
}

.review-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.review-card-body {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.15rem;
  flex: 1;
}

.review-item-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  color: #475569;
  font-weight: 600;
}

.review-item-tag i {
  color: var(--primary);
}

/* ==========================================================================
   Store Location & Contact Section (Bhatti Plaza, Pecco Road, Lahore)
   ========================================================================== */
.store-location-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.store-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.store-info-panel {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.info-panel-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.info-panel-header p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.store-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-row-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #f1f5f9;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-detail-col strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.15rem;
}

.contact-detail-col p, .contact-detail-col a {
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.45;
}

.contact-detail-col a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.plus-code-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #0f172a;
  color: #38bdf8;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.35rem;
}

.store-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 0.35rem;
}

.store-status-pill.open {
  background: #ecfdf5;
  color: #059669;
}

.store-status-pill.closed {
  background: #fef2f2;
  color: #dc2626;
}

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

/* Map Embed Container */
.store-map-panel {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.map-embed-wrapper {
  flex: 1;
  min-height: 380px;
  position: relative;
  background: #e2e8f0;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-card-footer {
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.map-footer-text h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.map-footer-text p {
  font-size: 0.78rem;
  color: #64748b;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
  background: #090d16;
  color: #cbd5e1;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.trust-chip i {
  color: #38bdf8;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
}

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

.footer-links-list a {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: #38bdf8;
  padding-left: 3px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.45;
}

.footer-contact-item i {
  color: #38bdf8;
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #cbd5e1;
}

.footer-contact-item a:hover {
  color: #38bdf8;
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.zanderio-compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ==========================================================================
   Shopping Cart Slide-Over Drawer
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #ffffff;
  z-index: 1000;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
}

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

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

.drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drawer-title-wrap h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.drawer-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Shipping Progress */
.free-shipping-progress-box {
  padding: 0.85rem 1.5rem;
  background: #f0fdf4;
  border-bottom: 1px solid #dcfce7;
}

.progress-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.progress-bar-track {
  width: 100%;
  height: 6px;
  background: #dcfce7;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #22c55e;
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

/* Cart Items Body */
.cart-items-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item-row {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

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

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

.cart-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  padding-right: 1.5rem;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

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

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #f8fafc;
}

.stepper-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #475569;
  transition: background var(--transition-fast);
}

.stepper-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.stepper-val {
  width: 28px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

.cart-item-remove-btn {
  color: #ef4444;
  font-size: 0.85rem;
  padding: 0.25rem;
  transition: opacity var(--transition-fast);
}

.cart-item-remove-btn:hover {
  opacity: 0.7;
}

/* Empty Cart State */
.empty-cart-state {
  margin: auto;
  text-align: center;
  padding: 2rem;
}

.empty-cart-state i {
  font-size: 3.5rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.empty-cart-state h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.empty-cart-state p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #64748b;
}

.cart-summary-line.total-line {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-color);
}

.btn-checkout-now {
  width: 100%;
  padding: 0.9rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #0284c7, #2563eb);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
  transition: all var(--transition-fast);
}

.btn-checkout-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
}

/* ==========================================================================
   Checkout Modal & Flow
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: #ffffff;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: scale(0.96);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-window {
  transform: scale(1);
}

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

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-body {
  padding: 1.75rem;
}

/* Form Groups */
.form-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

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

.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #ffffff;
  font-size: 0.875rem;
  color: #0f172a;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-hint {
  font-size: 0.72rem;
  color: #64748b;
}

/* Payment Method Cards */
.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.payment-radio-card {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  transition: all var(--transition-fast);
}

.payment-radio-card:hover {
  border-color: #cbd5e1;
}

.payment-radio-card.selected {
  border-color: var(--primary);
  background: rgba(2, 132, 199, 0.04);
}

.payment-card-content strong {
  display: block;
  font-size: 0.85rem;
  color: #0f172a;
}

.payment-card-content p {
  font-size: 0.75rem;
  color: #64748b;
}

.checkout-order-summary-box {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

/* Order Confirmation Screen */
.order-success-card {
  text-align: center;
  padding: 1rem 0;
}

.success-check-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.order-success-card h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.order-ref-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.order-receipt-details {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #475569;
  padding: 0.3rem 0;
}

.receipt-row.bold-total {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  border-top: 1px dashed var(--border-color);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
}

.order-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   Quick View Modal
   ========================================================================== */
.quickview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
}

.quickview-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f1f5f9;
  height: 320px;
}

.quickview-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-img-box img[src*="usb-flash-drive"],
.quickview-img-box img[src*="powerbank"] {
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

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

.quickview-specs-table td {
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.quickview-specs-table td:first-child {
  font-weight: 700;
  color: #475569;
  width: 40%;
  background: #f8fafc;
}

.quickview-package-list {
  list-style: none;
  font-size: 0.8rem;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.quickview-package-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quickview-package-list i {
  color: #10b981;
}

/* ==========================================================================
   Floating WhatsApp Widget
   ========================================================================== */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

.whatsapp-float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
  position: relative;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  background: #1ebe57;
}

.whatsapp-float-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.whatsapp-popup-card {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.whatsapp-popup-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-popup-head {
  background: #075e54;
  color: #ffffff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-popup-head h5 {
  font-size: 0.95rem;
  font-weight: 700;
}

.whatsapp-popup-head p {
  font-size: 0.72rem;
  color: #86efac;
}

.whatsapp-popup-body {
  padding: 1rem 1.25rem;
  background: #efeae2;
  font-size: 0.8125rem;
}

.whatsapp-bubble {
  background: #ffffff;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.whatsapp-popup-footer {
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast-item {
  background: #0f172a;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  animation: slideInLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast-item.success i {
  color: #22c55e;
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

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

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .store-location-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .reviews-summary-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .summary-score-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.25rem;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .header-nav, .header-search-wrap, .action-call-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .trust-pillars-grid {
    grid-template-columns: 1fr;
  }
  .quickview-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}
