/* -------------------------------------------------------------------------
   Genmax.net - Human-Crafted Industrial E-Commerce Design System
   ------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', var(--font-main);

  /* Industrial Power Palette */
  --slate-900: #090d16;
  --slate-800: #0f172a;
  --slate-700: #1e293b;
  --slate-600: #334155;
  --slate-500: #475569;
  --slate-400: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  /* Accent & Conversion Colors */
  --accent-orange: #ea580c;
  --accent-orange-hover: #c2410c;
  --accent-amber: #f59e0b;
  --accent-amber-light: #fffbeb;
  --accent-blue: #0284c7;
  --accent-green: #15803d;
  --accent-green-bg: #dcfce7;

  /* Surface and Borders */
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Elevation */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--slate-900);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heading-xl { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
.heading-1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.heading-2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.heading-3 { font-size: 1.3rem; }
.heading-4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--slate-500); }
.text-accent { color: var(--accent-orange); }
.text-bold { font-weight: 700; }
.text-center { text-align: center; }

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.container-narrow {
  max-width: 880px;
}

.section-py {
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (max-width: 768px) {
  .section-py {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* -------------------------------------------------------------------------
   Buttons & CTAs
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #ffffff !important;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  border-color: var(--accent-orange-hover);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

.btn-dark {
  background-color: var(--slate-900);
  color: #ffffff;
  border-color: var(--slate-900);
}

.btn-dark:hover {
  background-color: var(--slate-700);
  border-color: var(--slate-700);
}

.btn-outline {
  background-color: transparent;
  color: var(--slate-800);
  border-color: var(--slate-200);
}

.btn-outline:hover {
  border-color: var(--slate-800);
  background-color: var(--slate-100);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* Buy Now Button Specialized */
.btn-buy-now {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.3);
  text-transform: uppercase;
}

.btn-buy-now:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.45);
  transform: translateY(-1px);
}

/* -------------------------------------------------------------------------
   Badges
   ------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.badge-trifuel {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.badge-dualfuel {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.badge-safety {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.badge-tech {
  background: #f3e8ff;
  color: #6b21a8;
  border: 1px solid #e9d5ff;
}

.badge-sale {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  font-weight: 800;
}

.badge-instock {
  background: #dcfce7;
  color: #15803d;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  padding: 4px 10px;
  white-space: nowrap;
}

.badge-instock::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.badge-outofstock {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  padding: 4px 10px;
  white-space: nowrap;
  font-weight: 700;
}

.badge-outofstock::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* -------------------------------------------------------------------------
   Header & Navigation (Clean Single-Line Layout)
   ------------------------------------------------------------------------- */
.announcement-bar {
  background-color: var(--slate-900);
  color: #f8fafc;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.announcement-pill {
  background-color: var(--accent-orange);
  color: #fff;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.announcement-links a {
  color: var(--slate-400);
  font-size: 0.8rem;
}

.announcement-links a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 38px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
  position: relative;
  padding: 8px 11px;
  white-space: nowrap;
  border-radius: var(--radius-sm);
}

.nav-link:hover {
  color: var(--slate-900);
  background: var(--slate-100);
}

.nav-link.active {
  color: var(--slate-900);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-search-form {
  position: relative;
  width: 175px;
}

.header-search-input {
  width: 100%;
  padding: 7px 12px 7px 32px;
  font-size: 0.82rem;
  background-color: var(--slate-100);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  outline: none;
  transition: var(--transition);
}

.header-search-input:focus {
  background-color: #fff;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
  width: 210px;
}

.header-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--slate-800);
}

/* Mobile Navigation Drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  z-index: 1002;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  padding: 8px 0;
  border-bottom: 1px solid var(--slate-100);
}

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .header-search-form { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* -------------------------------------------------------------------------
   Hero Section - Flagship Power Equipment Showcase
   ------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: radial-gradient(ellipse 65% 55% at 75% 45%, rgba(234, 88, 12, 0.22) 0%, rgba(245, 158, 11, 0.06) 40%, transparent 75%),
              radial-gradient(circle at 15% 15%, rgba(30, 41, 59, 0.7) 0%, #080c14 100%);
  color: #ffffff;
  padding: 68px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Column Styling */
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  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); }
}

.hero-headline {
  color: #ffffff;
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-text-glow {
  background: linear-gradient(135deg, #fb923c 0%, #f59e0b 50%, #fde047 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lede {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 550px;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.hero-feat-item svg {
  flex-shrink: 0;
  color: #22c55e;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 15px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -5px rgba(234, 88, 12, 0.6);
  color: #ffffff;
}

.hero-badge-save {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 22px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.hero-metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
}

.metric-block .metric-value {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.metric-block .metric-label {
  color: var(--slate-400);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 2px;
}

/* Right Column - Flagship Showcase Stage */
.hero-product-stage {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.55) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 26px;
  position: relative;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  min-width: 0;
}

.stage-ambient-glow {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 60%;
  height: 50%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.35) 0%, rgba(245, 158, 11, 0.1) 45%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.stage-badges-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

.stage-badge-instock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: var(--radius-full);
}

.live-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.stage-badge-bestseller {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.stage-image-wrap {
  position: relative;
  z-index: 1;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 16px;
}

.stage-product-img {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s ease;
}

.hero-product-stage:hover .stage-product-img {
  transform: scale(1.03) translateY(-4px);
}

.stage-spec-tag {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.stage-spec-tag.tag-power {
  top: 10px;
  left: -10px;
}

.stage-spec-tag.tag-fuel {
  bottom: 15px;
  right: -10px;
}

.stage-spec-tag .tag-icon {
  font-size: 1.1rem;
}

.stage-spec-tag strong {
  display: block;
  font-size: 0.85rem;
  color: #ffffff;
  line-height: 1.1;
}

.stage-spec-tag small {
  display: block;
  font-size: 0.7rem;
  color: var(--slate-400);
}

.stage-product-info {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
}

.stage-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

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

.stage-rating-num {
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
}

.stage-rating-count {
  font-size: 0.78rem;
  color: var(--slate-400);
}

.stage-product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 14px;
}

.stage-product-title a {
  color: #ffffff;
  transition: color 0.2s ease;
}

.stage-product-title a:hover {
  color: #fb923c;
}

.stage-buy-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.stage-price-group {
  display: flex;
  flex-direction: column;
}

.stage-current-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
  line-height: 1;
}

.stage-compare-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.stage-compare-price {
  color: var(--slate-400);
  text-decoration: line-through;
  font-size: 0.85rem;
}

.stage-save-pill {
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
}

.btn-stage-buy {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
  white-space: nowrap;
}

.btn-stage-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.55);
  color: #ffffff;
}

.stage-guarantee-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--slate-400);
  margin-top: 8px;
  flex-wrap: wrap;
}

.stage-guarantee-line span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stage-spec-tag.tag-power {
    left: 10px;
  }
  .stage-spec-tag.tag-fuel {
    right: 10px;
  }
}

/* -------------------------------------------------------------------------
   Trust Strip
   ------------------------------------------------------------------------- */
.trust-strip {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--slate-100);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 0.78rem;
  color: var(--slate-500);
  margin: 0;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* -------------------------------------------------------------------------
   Product Cards & Grid
   ------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  width: 100%;
}

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

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

.product-card-top {
  position: relative;
  padding: 20px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-bottom: 1px solid var(--slate-100);
}

.product-card-image {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.product-card-discount {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.product-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  font-size: 0.78rem;
}

.stars {
  color: #f59e0b;
  display: inline-flex;
  gap: 2px;
  letter-spacing: 1px;
}

.reviews-count {
  color: var(--slate-400);
}

.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}

.spec-pill {
  font-size: 0.72rem;
  background: var(--slate-100);
  color: var(--slate-600);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  white-space: nowrap;
}

.product-card-pricing {
  margin-top: auto;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
  font-family: var(--font-heading);
}

.price-compare {
  font-size: 0.88rem;
  color: var(--slate-400);
  text-decoration: line-through;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: auto;
}

.btn-card-buy {
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  justify-content: center;
}

.btn-card-soldout {
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--slate-100);
  color: var(--slate-500);
  border: 1px solid var(--slate-200);
  cursor: not-allowed;
  text-align: center;
  justify-content: center;
}

.btn-card-details {
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  justify-content: center;
}

/* Category Filter Tabs */
.category-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 28px;
  scrollbar-width: thin;
}

.cat-tab {
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--slate-600);
  white-space: nowrap;
  transition: var(--transition);
}

.cat-tab:hover, .cat-tab.active {
  background: var(--slate-900);
  border-color: var(--slate-900);
  color: #ffffff;
}

/* -------------------------------------------------------------------------
   Product Detail Page (PDP) - Clean Robust Layout
   ------------------------------------------------------------------------- */
.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.pdp-gallery {
  min-width: 0;
  width: 100%;
  position: sticky;
  top: 90px;
}

.pdp-details {
  min-width: 0;
  width: 100%;
}

.gallery-main {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-main-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 10px;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  -webkit-overflow-scrolling: touch;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 6px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.thumb-item {
  width: 62px;
  height: 62px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 4px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumb-item.active, .thumb-item:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 1px var(--accent-orange);
}

.pdp-header {
  margin-bottom: 20px;
}

.pdp-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pdp-breadcrumbs a {
  color: var(--slate-500);
}

.pdp-breadcrumbs a:hover {
  color: var(--slate-900);
}

.pdp-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
  line-height: 1.35;
  font-family: var(--font-main);
  word-break: break-word;
  letter-spacing: -0.01em;
}

.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 18px;
}

.pdp-price-box {
  background: var(--slate-50);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 22px;
}

.pdp-price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  font-family: var(--font-heading);
}

.pdp-price-compare {
  font-size: 1.15rem;
  color: var(--slate-400);
  text-decoration: line-through;
  margin-left: 10px;
}

.pdp-save-badge {
  background-color: #fee2e2;
  color: #b91c1c;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  margin-left: 10px;
}

/* Variant Selector */
.pdp-variants-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.variant-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.variant-pill {
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.variant-pill:hover {
  border-color: var(--slate-400);
}

.variant-pill.active {
  border-color: var(--accent-orange);
  background: var(--accent-amber-light);
}

.variant-pill-title {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.variant-pill-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.variant-pill-save {
  font-size: 0.72rem;
  color: var(--accent-green);
  font-weight: 700;
}

/* PDP Actions */
.pdp-actions {
  margin-bottom: 24px;
}

.stripe-badge-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--slate-500);
  font-size: 0.8rem;
  font-weight: 600;
}

.pdp-guarantee-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.guarantee-col {
  text-align: center;
}

.guarantee-col svg {
  color: var(--accent-orange);
  margin-bottom: 4px;
}

.guarantee-col h5 {
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.guarantee-col p {
  font-size: 0.72rem;
  color: var(--slate-500);
  margin: 0;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.specs-table tr:nth-child(even) {
  background-color: var(--slate-50);
}

.specs-table td {
  padding: 10px 14px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border-color);
}

.specs-table td:first-child {
  font-weight: 700;
  color: var(--slate-800);
  width: 38%;
}

.specs-table td:last-child {
  color: var(--slate-600);
}

/* Rich Description Content */
.pdp-description {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border-color);
}

.rich-content {
  color: var(--slate-700);
  line-height: 1.7;
}

.rich-content h2, .rich-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.rich-content ul {
  margin-left: 20px;
  margin-bottom: 18px;
}

.rich-content li {
  margin-bottom: 6px;
}

/* Mobile Sticky Buy Bar */
.mobile-sticky-buy-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 10px 18px;
  z-index: 999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

@media (max-width: 992px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pdp-gallery {
    position: static;
  }
  .gallery-main {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .mobile-sticky-buy-bar {
    display: block;
  }
  body {
    padding-bottom: 65px;
  }
  .pdp-guarantee-box {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }
  .guarantee-col {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
  }
  .guarantee-col svg {
    margin-bottom: 0;
  }
}

/* -------------------------------------------------------------------------
   Why Genmax Engineering Section
   ------------------------------------------------------------------------- */
.why-genmax-section {
  background: #0f172a;
  color: #ffffff;
  padding: 70px 0;
}

.why-genmax-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* -------------------------------------------------------------------------
   Prose / Legal & Policy Pages
   ------------------------------------------------------------------------- */
.policy-page-header {
  background: #0f172a;
  color: #fff;
  padding: 56px 0;
  margin-bottom: 40px;
}

.policy-page-header h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.policy-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .policy-card {
    padding: 20px;
  }
}

.prose h2 {
  font-size: 1.35rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--slate-900);
}

.prose h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--slate-900);
}

.prose p, .prose li {
  color: var(--slate-600);
  font-size: 0.96rem;
  line-height: 1.7;
}

.prose ul, .prose ol {
  margin-left: 20px;
  margin-bottom: 18px;
}

.prose li {
  margin-bottom: 5px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--accent-orange);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--slate-600);
  line-height: 1.65;
  font-size: 0.94rem;
  display: none;
}

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

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--slate-100);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  background-color: #fff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--slate-900);
  color: #94a3b8;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.85rem;
}

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

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon-svg {
  width: 44px;
  height: 29px;
  border-radius: 4px;
  display: inline-block;
  object-fit: contain;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  background-color: transparent;
}

.payment-icon-svg:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.payment-badge {
  background: #ffffff;
  border-radius: 4px;
  padding: 3px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--slate-800);
  height: 25px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================================
   Mobile Phone Optimizations (max-width: 768px and max-width: 480px)
   ========================================================================= */

@media (max-width: 768px) {
  /* Announcement Bar */
  .announcement-bar {
    padding: 7px 12px;
  }
  .announcement-inner {
    justify-content: center;
  }
  .announcement-links {
    display: none !important;
  }
  .announcement-text {
    font-size: 0.76rem;
    gap: 8px;
    text-align: center;
    justify-content: center;
  }

  /* Header */
  .site-header {
    height: 60px;
  }
  .header-container {
    height: 60px;
    padding: 0 16px;
  }
  .header-logo img {
    height: 30px;
  }
  .mobile-menu-toggle {
    padding: 8px;
    margin-right: -6px;
  }

  /* Containers & Sections */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-py {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  /* Hero Section */
  /* Hero Section */
  .hero-section {
    padding: 32px 0 44px;
  }
  .hero-headline {
    font-size: 2.1rem;
    line-height: 1.18;
    margin-bottom: 14px;
  }
  .hero-lede {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-metrics-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 16px;
  }
  .metric-block .metric-value {
    font-size: 1.05rem;
  }
  .metric-block .metric-label {
    font-size: 0.7rem;
  }
  .hero-product-stage {
    padding: 20px 16px;
    margin-top: 10px;
  }
  .stage-image-wrap {
    min-height: 200px;
    margin: 8px auto 14px;
  }
  .stage-product-img {
    max-height: 200px;
  }
  .stage-spec-tag {
    display: none;
  }
  .stage-buy-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn-stage-buy {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Trust Bar */
  .trust-strip {
    padding: 16px 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-item {
    gap: 12px;
  }
  .trust-icon {
    width: 38px;
    height: 38px;
  }
  .trust-icon svg {
    width: 20px;
    height: 20px;
  }
  .trust-item h4 {
    font-size: 0.88rem;
  }
  .trust-item p {
    font-size: 0.74rem;
  }

  /* Category Tabs */
  .category-tabs {
    gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 6px;
  }
  .cat-tab {
    padding: 6px 13px;
    font-size: 0.8rem;
  }

  /* Product Cards Grid - Clean 2-Column Mobile Phone Layout */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .product-card {
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }
  .product-card-top {
    min-height: 140px;
    height: 140px;
    padding: 8px;
  }
  .product-card-image {
    max-height: 120px;
    max-width: 92%;
  }
  .product-card-badges {
    top: 6px;
    left: 6px;
    gap: 2px;
  }
  .product-card-badges .badge {
    font-size: 0.6rem;
    padding: 2px 5px;
    gap: 3px;
  }
  .product-card-badges .badge::before {
    width: 5px;
    height: 5px;
  }
  .product-card-badges .badge:not(:first-child) {
    display: none; /* Keep image clean and visible on mobile screens */
  }
  .product-card-discount {
    top: 6px;
    right: 6px;
    font-size: 0.6rem;
    padding: 2px 5px;
  }
  .product-card-body {
    padding: 10px 8px 12px;
  }
  .product-card-category {
    font-size: 0.62rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-card-title {
    font-size: 0.8rem;
    line-height: 1.25;
    margin-bottom: 5px;
    height: 2.5em;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-card-rating {
    font-size: 0.68rem;
    gap: 3px;
    margin-bottom: 5px;
  }
  .product-card-rating .stars {
    font-size: 0.68rem;
    letter-spacing: 0;
  }
  .product-card-rating .reviews-count {
    font-size: 0.68rem;
  }
  .product-card-specs {
    display: none; /* Clean & consistent card alignment across rows */
  }
  .product-card-pricing {
    margin-bottom: 8px;
    gap: 4px;
    flex-wrap: wrap;
    align-items: baseline;
  }
  .price-current {
    font-size: 1rem;
    font-weight: 800;
  }
  .price-compare {
    font-size: 0.72rem;
  }
  .product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
  }
  .product-card-actions .btn {
    width: 100% !important;
    padding: 7px 4px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .product-card-actions .btn-card-soldout {
    display: none; /* Prominent red 'OUT OF STOCK' badge at top already informs user */
  }

  /* Product Details Page (PDP) */
  .pdp-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .pdp-gallery {
    position: static;
    width: 100%;
  }
  .gallery-main {
    height: 280px;
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
  }
  .gallery-thumbs {
    gap: 6px;
    padding-bottom: 6px;
  }
  .thumb-item {
    width: 52px;
    height: 52px;
  }
  .pdp-breadcrumbs {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }
  .pdp-title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .pdp-meta-row {
    font-size: 0.8rem;
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  .pdp-price-box {
    padding: 12px 14px;
    margin-bottom: 16px;
  }
  .pdp-price-current {
    font-size: 1.65rem;
  }
  .pdp-price-compare {
    font-size: 1rem;
  }
  .pdp-save-badge {
    font-size: 0.75rem;
    padding: 2px 7px;
  }
  .variant-options-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }
  .variant-pill {
    padding: 8px 10px;
  }
  .variant-pill-title {
    font-size: 0.78rem;
  }
  .variant-pill-price {
    font-size: 0.85rem;
  }
  .pdp-actions {
    margin-bottom: 18px;
  }
  .btn-buy-now {
    width: 100%;
    font-size: 1.05rem;
    padding: 14px 20px;
  }
  .stripe-badge-strip {
    font-size: 0.75rem;
    text-align: center;
  }
  .pdp-guarantee-box {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    text-align: left;
    margin-bottom: 20px;
  }
  .guarantee-col {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
  }
  .guarantee-col svg {
    margin-bottom: 0;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .guarantee-col h5 {
    font-size: 0.82rem;
    margin: 0;
  }
  .guarantee-col p {
    font-size: 0.72rem;
    margin: 0;
  }
  .specs-table td {
    padding: 8px 10px;
    font-size: 0.82rem;
  }
  .specs-table td:first-child {
    width: 42%;
  }

  /* Mobile Sticky Bottom Buy Bar with Safe Area */
  .mobile-sticky-buy-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 8px 16px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  }
  body {
    padding-bottom: max(75px, calc(65px + env(safe-area-inset-bottom)));
  }

  /* Why Genmax Grid */
  .why-genmax-section {
    padding: 44px 0;
  }
  .why-genmax-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }
  .why-card {
    padding: 18px 16px;
  }
  .why-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  /* Policy Pages */
  .policy-page-header {
    padding: 36px 0;
    margin-bottom: 24px;
  }
  .policy-card {
    padding: 18px;
    margin-bottom: 24px;
  }
  .prose h2 {
    font-size: 1.2rem;
    margin-top: 20px;
  }

  /* Footer */
  .site-footer {
    padding-top: 40px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .footer-brand {
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* -------------------------------------------------------------------------
   Customer Reviews Section
   ------------------------------------------------------------------------- */
.pdp-reviews-jump-link {
  color: var(--slate-600);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.pdp-reviews-jump-link:hover {
  color: var(--accent-orange);
}

.pdp-reviews-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 2px solid var(--border-color);
}

.reviews-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.reviews-title-wrap h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.reviews-subtitle {
  color: var(--slate-500);
  font-size: 0.95rem;
  margin-top: 4px;
}

.reviews-summary-card {
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}

.reviews-score-col {
  text-align: center;
  border-right: 1px solid var(--border-color);
  padding-right: 28px;
}

.score-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--slate-900);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 6px;
}

.score-stars {
  color: #eab308;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.score-count {
  font-size: 0.9rem;
  color: var(--slate-500);
  font-weight: 600;
}

.recommend-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Rating Breakdown */
.reviews-breakdown-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.rating-label {
  width: 55px;
  color: var(--slate-600);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-track {
  flex: 1;
  height: 10px;
  background: var(--slate-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: #eab308;
  border-radius: var(--radius-full);
}

.rating-pct {
  width: 42px;
  text-align: right;
  color: var(--slate-500);
  font-weight: 600;
}

/* Trust Guarantee Col */
.reviews-trust-col {
  border-left: 1px solid var(--border-color);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #16a34a;
}

.trust-item h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-800);
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: 1px;
  line-height: 1.35;
}

/* Customer Photo Gallery Strip */
.customer-photos-block {
  margin-bottom: 36px;
}

.photos-block-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #000;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  color: #ffffff;
  pointer-events: none;
}

.photo-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}

.photo-caption {
  font-size: 0.72rem;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* Reviews Toolbar */
.reviews-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 12px;
}

.filter-chips-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-filter-chip {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--slate-700);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.review-filter-chip:hover {
  border-color: var(--slate-400);
}

.review-filter-chip.active {
  background: var(--slate-900);
  color: #ffffff;
  border-color: var(--slate-900);
}

/* Reviews Grid */
.reviews-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--slate-800);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  color: var(--slate-900);
  font-size: 0.95rem;
}

.verified-buyer-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.review-date-badge {
  font-size: 0.8rem;
  color: var(--slate-400);
}

.review-stars-strip {
  color: #eab308;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-headline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
  line-height: 1.35;
}

.review-body-text {
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.review-attached-img {
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  max-width: 140px;
  cursor: pointer;
  position: relative;
}

.review-attached-img img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.review-attached-img:hover img {
  transform: scale(1.05);
}

.review-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--slate-100);
  font-size: 0.8rem;
  color: var(--slate-500);
}

.helpful-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--slate-600);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.helpful-btn:hover {
  background: var(--slate-100);
  border-color: var(--slate-400);
  color: var(--slate-900);
}

.helpful-btn.voted {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

/* Lightbox Modal */
.review-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 22, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.review-lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #f8fafc;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* Mobile Responsive Reviews */
@media (max-width: 991px) {
  .reviews-summary-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .reviews-score-col {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .reviews-trust-col {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding-left: 0;
    padding-top: 20px;
  }
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-masonry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .reviews-title-wrap h2 {
    font-size: 1.6rem;
  }
  .score-number {
    font-size: 3.2rem;
  }
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* -------------------------------------------------------------------------
   Hero Banner Section (Genmax Winter Cabin GM10500iETC Showcase)
   ------------------------------------------------------------------------- */
.hero-banner-section {
  position: relative;
  width: 100%;
  background-color: #0b1118;
  overflow: hidden;
}

.hero-banner-link-wrap {
  display: block;
  position: relative;
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.hero-banner-media {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 640px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-banner-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5.5%;
  padding-left: 10%;
  pointer-events: none;
}

.hero-banner-content {
  text-align: center;
  pointer-events: auto;
  max-width: 620px;
}

.hero-banner-heading {
  color: #ffffff;
  font-size: clamp(1.4rem, 2.7vw, 2.6rem);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 18px rgba(0, 0, 0, 0.65);
  letter-spacing: -0.01em;
}

.hero-banner-heading strong {
  font-weight: 800;
}

.hero-banner-buttons {
  display: flex;
  justify-content: center;
}

.hero-banner-shop-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #111827;
  padding: 11px 34px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease-in-out;
  letter-spacing: 0.01em;
}

.hero-banner-link-wrap:hover .hero-banner-shop-btn {
  background-color: #f1f5f9;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .hero-banner-img {
    min-height: 300px;
    object-position: 28% center;
  }
  .hero-banner-container {
    padding-bottom: 22px;
    padding-left: 0;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
  }
  .hero-banner-content {
    width: 92%;
    padding: 0 12px;
  }
  .hero-banner-heading {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
  .hero-banner-shop-btn {
    padding: 9px 26px;
    font-size: 0.88rem;
  }
}

/* -------------------------------------------------------------------------
   Lifestyle Showcase Section (Real-World Field Applications)
   ------------------------------------------------------------------------- */
.lifestyle-showcase-section {
  padding: 72px 0;
  background-color: #f8fafc;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.lifestyle-showcase-header {
  margin-bottom: 48px;
}

.lifestyle-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 44px;
  align-items: center;
}

.lifestyle-image-card {
  position: relative;
}

.lifestyle-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
}

.lifestyle-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.lifestyle-image-wrap:hover .lifestyle-img {
  transform: scale(1.02);
}

.lifestyle-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lifestyle-content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lifestyle-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lifestyle-card:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.lifestyle-card-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(234, 88, 12, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifestyle-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0 0 6px 0;
}

.lifestyle-card-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

.lifestyle-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .lifestyle-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lifestyle-showcase-section {
    padding: 48px 0;
  }
}

.mobile-break {
  display: none;
}

@media (max-width: 576px) {
  .mobile-break {
    display: inline;
  }
  .lifestyle-showcase-section {
    padding: 40px 0;
  }
  .lifestyle-showcase-header {
    margin-bottom: 28px;
  }
  .lifestyle-showcase-header h2,
  .lifestyle-showcase-header .heading-1 {
    font-size: 1.42rem !important;
    line-height: 1.25;
  }
  .lifestyle-card {
    padding: 16px;
  }
  .lifestyle-card-icon {
    width: 40px;
    height: 40px;
  }
  .lifestyle-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .lifestyle-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}



