/* ==========================================================================
   DUROMAX POWER EQUIPMENT — OFFICIAL COMMERCIAL DESIGN SYSTEM
   Matches duromaxpower.com Heavy-Duty Industrial Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700;1,800&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --dm-blue: #0284c7;
  --dm-blue-dark: #0369a1;
  --dm-blue-glow: rgba(0, 87, 200, 0.25);
  --dm-navy: #0f2442;
  --dm-navy-dark: #0c1e38;
  --dm-navy-light: #16325c;
  
  --dm-red: #dc2626;
  --dm-red-dark: #b91c1c;
  --dm-red-glow: rgba(211, 47, 47, 0.3);
  
  --dm-yellow: #ffb800;
  --dm-amber: #f59e0b;
  --dm-green: #10b981;
  
  --bg-page: #f4f6f9;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-dark: #cbd5e1;
  --border-focus: #0057c8;
  
  --text-dark: #0c1e38;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --font-heading: 'Saira', 'Roboto', -apple-system, sans-serif;
  --font-body: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.15), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-red: 0 8px 20px rgba(211, 47, 47, 0.28);
  --shadow-blue: 0 8px 20px rgba(0, 87, 200, 0.28);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body.brand-theme {
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.heading-industrial {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin: 0 0 16px;
  line-height: 1.15;
}

/* Links & Buttons Reset */
a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   1. TOP TICKER MARQUEE & UTILITY BAR
   ========================================================================== */
.marquee-shell {
  background: var(--dm-navy-dark);
  color: #f1f5f9;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--dm-red);
  padding: 8px 0;
}

.marquee-row {
  display: inline-flex;
  animation: ticker-slide 38s linear infinite;
}

.marquee-row:hover {
  animation-play-state: paused;
}

.marquee-span {
  display: inline-flex;
  align-items: center;
  padding: 0 32px;
}

.marquee-span strong {
  color: var(--dm-yellow);
  margin-right: 6px;
}

@keyframes ticker-slide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.topbar-shell {
  background: var(--dm-navy);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0;
}

.topbar-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-contact-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-contact-links a {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}

.topbar-contact-links a:hover {
  color: #ffffff;
}

.topbar-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #94a3b8;
  font-size: 12px;
}

.topbar-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-badge-item strong {
  color: #f1f5f9;
}

/* ==========================================================================
   2. MAIN SITE HEADER & NAVIGATION (DuroMax Clean Industrial Header)
   ========================================================================== */
.site-shell {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

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

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

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

.nav-link-item {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  padding: 10px 14px;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link-item:hover {
  color: var(--dm-blue);
  background: rgba(0, 87, 200, 0.05);
}

.nav-link-item.active {
  color: var(--dm-blue);
  font-weight: 700;
}

.nav-link-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--dm-red);
  border-radius: 2px 2px 0 0;
}

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

.btn-header-cta {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--dm-red);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.btn-header-cta:hover {
  background: var(--dm-red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.btn-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dm-navy);
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cart-trigger:hover {
  background: var(--dm-blue);
}

.cart-badge-count {
  background: var(--dm-red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ==========================================================================
   3. HERO SECTION (DuroMax Heavy-Duty Hero)
   ========================================================================== */
.hero-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--dm-navy-dark) 0%, var(--dm-navy) 60%, #11284a 100%);
  color: #ffffff;
  padding: 70px 0 90px;
  overflow: hidden;
  border-bottom: 4px solid var(--dm-red);
}

.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/generator_storm_backup.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.22;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

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

.hero-content {
  max-width: 680px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 47, 47, 0.2);
  border: 1px solid var(--dm-red);
  color: #ff8a80;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-content h1 span.highlight-red {
  color: var(--dm-red);
}

.hero-content h1 span.highlight-blue {
  color: #60a5fa;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 32px;
}

.hero-pill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-badge-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f1f5f9;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-badge-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dm-yellow);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  background: var(--dm-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-red);
}

.btn-hero-primary:hover {
  background: var(--dm-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(211, 47, 47, 0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background: #ffffff;
  color: var(--dm-navy-dark);
  transform: translateY(-2px);
}

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

.hero-visual-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
}

.hero-visual-card img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}

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

.hero-floating-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--dm-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.hero-visual-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-visual-model {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
}

.hero-visual-model span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  font-family: var(--font-body);
}

.hero-visual-price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--dm-yellow);
}

/* ==========================================================================
   4. TRUST PILLARS BAR
   ========================================================================== */
.trust-bar-shell {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
}

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

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  border-right: 1px solid var(--border-light);
}

.trust-bar-item:last-child {
  border-right: none;
}

.trust-bar-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.trust-bar-text {
  display: flex;
  flex-direction: column;
}

.trust-bar-text strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}

.trust-bar-text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   5. NATIONAL RETAILERS & CERTIFICATION STRIP
   ========================================================================== */
.retailer-strip {
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.retailer-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.retailer-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.retailer-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.retailer-logo-img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: all 0.2s ease;
}

.retailer-logo-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ==========================================================================
   6. CATEGORY TILES (TRI-FUEL, DUAL-FUEL, QUIET INVERTER, WHOLE-HOME)
   ========================================================================== */
.category-section {
  padding: 60px 0;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dm-blue);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.cat-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--dm-blue);
  box-shadow: var(--shadow-lg);
}

.cat-card-img-wrap {
  height: 190px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
}

.cat-card-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

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

.cat-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.cat-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.5;
  flex-grow: 1;
}

.cat-card-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dm-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cat-card:hover .cat-card-link {
  color: var(--dm-red);
}

/* ==========================================================================
   7. PRODUCT CATALOG & EQUIPMENT CARDS
   ========================================================================== */
.catalog-section {
  padding: 60px 0 80px;
  background: var(--bg-page);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.equipment-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.equipment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--dm-blue);
}

.equipment-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--dm-navy-dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  border-left: 3px solid var(--dm-red);
}

.equipment-img-shell {
  height: 250px;
  background: #ffffff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.equipment-img-shell img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-img-shell img {
  transform: scale(1.04);
}

.equipment-watt-bar {
  background: #0f172a;
  color: #ffffff;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.equipment-watt-bar .peak-watt {
  color: var(--dm-yellow);
}

.equipment-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.equipment-fuel-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.fuel-pill {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 3px;
}

.fuel-pill-tri {
  background: #eff6ff;
  color: var(--dm-blue);
  border: 1px solid #bfdbfe;
}

.fuel-pill-dual {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.fuel-pill-gas {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.equipment-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 8px;
  min-height: 44px;
}

.equipment-title a {
  color: inherit;
  transition: color 0.15s ease;
}

.equipment-title a:hover {
  color: var(--dm-blue);
}

.equipment-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.equipment-rating-row .stars {
  color: var(--dm-yellow);
  font-size: 14px;
}

.equipment-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.equipment-features-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.equipment-features-list li::before {
  content: "✓";
  color: var(--dm-green);
  font-weight: 800;
}

.equipment-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.equipment-price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--dm-red);
}

.equipment-original-price {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text-light);
  text-decoration: line-through;
}

.equipment-shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  margin-bottom: 16px;
}

.equipment-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-card-cart {
  background: var(--dm-blue);
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-card-cart:hover {
  background: var(--dm-blue-dark);
}

.btn-card-details {
  background: #f1f5f9;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 12px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-card-details:hover {
  background: #e2e8f0;
  color: var(--dm-blue);
}

/* ==========================================================================
   8. TRI-FUEL & INVERTER TECHNOLOGY SPOTLIGHT (DuroMax Tech Section)
   ========================================================================== */
.tech-spotlight-section {
  background: var(--dm-navy);
  color: #ffffff;
  padding: 80px 0;
  border-top: 4px solid var(--dm-blue);
  border-bottom: 4px solid var(--dm-red);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tech-content h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 20px;
}

.tech-content p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.fuel-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.fuel-breakdown-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--dm-yellow);
  padding: 16px 20px;
  border-radius: 6px;
}

.fuel-breakdown-item.gas {
  border-left-color: var(--dm-red);
}

.fuel-breakdown-item.propane {
  border-left-color: var(--dm-blue);
}

.fuel-breakdown-item.ng {
  border-left-color: var(--dm-yellow);
}

.fuel-breakdown-item strong {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

.fuel-breakdown-item p {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

.tech-visual-shell {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.tech-visual-shell img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

/* ==========================================================================
   9. WHAT CAN IT POWER? LOAD CALCULATOR GUIDE
   ========================================================================== */
.power-guide-section {
  padding: 70px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

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

.appliance-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.appliance-card:hover {
  border-color: var(--dm-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.appliance-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.appliance-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.appliance-watts {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--dm-red);
}

.appliance-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   10. CUSTOMER REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  padding: 70px 0;
  background: var(--bg-page);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--dm-yellow);
  font-size: 16px;
  margin-bottom: 12px;
}

.review-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

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

.review-author-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  font-size: 12px;
}

.review-author {
  font-weight: 700;
  color: var(--text-dark);
}

.review-badge-verified {
  color: #059669;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   11. SITE FOOTER (DuroMax Industrial Heavy-Duty Footer)
   ========================================================================== */
.footer-shell {
  background: var(--dm-navy-dark);
  color: #cbd5e1;
  border-top: 4px solid var(--dm-red);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--dm-red);
}

.footer-logo-img {
  height: 38px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #94a3b8;
  transition: all 0.15s ease;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
}

.footer-contact-item span {
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-item strong {
  color: #ffffff;
  display: block;
}

.footer-contact-item a {
  color: #60a5fa;
  text-decoration: underline;
}

.footer-badges-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-badge-item {
  height: 36px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.4);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-badge-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

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

/* ==========================================================================
   12. SHOPPING CART DRAWER
   ========================================================================== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  box-shadow: -10px 0 25px rgba(0,0,0,0.25);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

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

.cart-header {
  background: var(--dm-navy);
  color: #ffffff;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--dm-red);
}

.cart-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.btn-close-cart {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-footer {
  padding: 20px;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.cart-total-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
}

.cart-total-amount {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--dm-red);
}

.btn-checkout {
  width: 100%;
  background: var(--dm-red);
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  transition: all 0.2s ease;
  text-align: center;
  display: block;
}

.btn-checkout:hover {
  background: var(--dm-red-dark);
}

/* ==========================================================================
   13. PRODUCT DETAIL PAGE (PDP) SPECIFIC STYLES
   ========================================================================== */
.pdp-wrap {
  padding: 40px 0 80px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.pdp-gallery-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.pdp-main-img-wrap {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pdp-main-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.pdp-thumb-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pdp-thumb {
  width: 72px;
  height: 72px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  cursor: pointer;
  object-fit: contain;
  padding: 4px;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.pdp-thumb.active,
.pdp-thumb:hover {
  border-color: var(--dm-blue);
}

.pdp-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dm-navy-dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 4px;
  border-left: 3px solid var(--dm-red);
  margin-bottom: 12px;
}

.pdp-title {
  font-size: 32px;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pdp-price-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.pdp-current-price {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--dm-red);
}

.pdp-msrp {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-light);
  text-decoration: line-through;
}

.pdp-save-tag {
  background: #dcfce7;
  color: #15803d;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.pdp-delivery-perks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
  margin-top: 12px;
}

.pdp-actions-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-pdp-buy-now {
  background: var(--dm-red);
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: var(--shadow-red);
  transition: all 0.2s ease;
  text-align: center;
}

.btn-pdp-buy-now:hover {
  background: var(--dm-red-dark);
  transform: translateY(-2px);
}

.btn-pdp-add-cart {
  background: var(--dm-navy);
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-pdp-add-cart:hover {
  background: var(--dm-blue);
}

/* Specs Table */
.pdp-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 20px;
}

.pdp-specs-table th,
.pdp-specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.pdp-specs-table th {
  background: #f8fafc;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  width: 35%;
}

.pdp-specs-table td {
  color: var(--text-body);
}

/* ==========================================================================
   14. RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-actions, .hero-pill-badges {
    justify-content: center;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar-item:nth-child(2) {
    border-right: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .appliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pdp-grid {
    grid-template-columns: 1fr;
  }
  .pdp-gallery-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .topbar-shell {
    display: none;
  }
  .header-nav {
    display: none; /* Can be toggled with mobile menu */
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   15. SLEEK RESPONSIVE HEADER & CART BUTTON (v6)
   ========================================================================== */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

.site-shell {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-layout {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 72px;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.brand-logo-wrap {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.brand-logo-img {
  height: 40px !important;
  width: auto !important;
  max-width: 190px !important;
  object-fit: contain !important;
  display: block !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-shrink: 0 !important;
  margin-left: auto;
}

.btn-cart-trigger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  background: var(--dm-navy, #0a192f) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  position: relative !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12) !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
}

.btn-cart-trigger:hover {
  background: var(--dm-blue, #0057c8) !important;
  transform: translateY(-1px);
}

.cart-icon-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.cart-badge-count {
  position: absolute !important;
  top: -8px !important;
  right: -10px !important;
  background: var(--dm-red, #d32f2f) !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  min-width: 19px !important;
  height: 19px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 4px !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
  box-sizing: border-box !important;
}

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

.nav-link-item {
  font-family: var(--font-heading, sans-serif);
  font-size: 13px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-dark, #0f172a);
  padding: 8px 10px !important;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}

/* Laptop View (992px to 1200px) */
@media (max-width: 1200px) {
  .header-layout {
    height: 66px !important;
    gap: 8px !important;
  }
  .brand-logo-img {
    height: 36px !important;
    max-width: 160px !important;
  }
  .nav-link-item {
    font-size: 12px !important;
    padding: 6px 8px !important;
  }
  .nav-link-item:nth-child(n+6) {
    display: none !important;
  }
}

/* Tablet and Mobile (<= 991px) */
@media (max-width: 991px) {
  .topbar-shell {
    display: none !important;
  }
  .header-nav {
    display: none !important;
  }
  .header-layout {
    height: 58px !important;
    padding: 0 12px !important;
    gap: 12px !important;
  }
  .brand-logo-img {
    height: 30px !important;
    max-width: 135px !important;
  }
  .btn-cart-trigger {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 6px !important;
  }
}


/* ==========================================================================
   16. CONTAINED & POLISHED CUSTOMER REVIEWS SECTION
   ========================================================================== */
.pdp-reviews-section {
  max-width: 1140px !important;
  margin: 48px auto 0 !important;
  padding: 40px 0 0 !important;
  border-top: 2px solid #e2e8f0 !important;
  box-sizing: border-box !important;
}

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

.reviews-title-wrap h2 {
  font-family: var(--font-heading, sans-serif) !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 6px 0 !important;
  text-transform: uppercase !important;
}

.reviews-subtitle {
  color: #64748b !important;
  font-size: 15px !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.reviews-summary-card {
  display: grid !important;
  grid-template-columns: 240px 1fr 280px !important;
  gap: 32px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 32px !important;
  margin-bottom: 36px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

.reviews-score-col {
  text-align: center !important;
  border-right: 1px solid #e2e8f0 !important;
  padding-right: 28px !important;
}

.score-number {
  font-size: 56px !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  font-family: var(--font-heading, sans-serif) !important;
  line-height: 1 !important;
  margin-bottom: 6px !important;
}

.score-stars {
  color: #f59e0b !important;
  font-size: 22px !important;
  letter-spacing: 3px !important;
  margin-bottom: 8px !important;
}

.score-count {
  font-size: 14px !important;
  color: #64748b !important;
  font-weight: 600 !important;
}

.recommend-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 12px !important;
  background: #ecfdf5 !important;
  color: #047857 !important;
  border: 1px solid #a7f3d0 !important;
  padding: 6px 14px !important;
  border-radius: 9999px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.reviews-breakdown-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.rating-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 14px !important;
}

.rating-label {
  width: 50px !important;
  color: #475569 !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.rating-track {
  flex: 1 !important;
  height: 10px !important;
  background: #f1f5f9 !important;
  border-radius: 9999px !important;
  overflow: hidden !important;
}

.rating-fill {
  height: 100% !important;
  background: #f59e0b !important;
  border-radius: 9999px !important;
}

.rating-pct {
  width: 65px !important;
  text-align: right !important;
  color: #64748b !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.reviews-trust-col {
  border-left: 1px solid #e2e8f0 !important;
  padding-left: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

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

.trust-item svg {
  flex-shrink: 0 !important;
  margin-top: 3px !important;
  color: #10b981 !important;
}

.trust-item h6 {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 !important;
  font-family: var(--font-heading, sans-serif) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
}

.trust-item p {
  font-size: 13px !important;
  color: #64748b !important;
  margin: 3px 0 0 !important;
  line-height: 1.4 !important;
}

/* Customer Photos Strip */
.customer-photos-block {
  margin-bottom: 36px !important;
}

.photos-block-title {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 16px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--font-heading, sans-serif) !important;
  text-transform: uppercase !important;
}

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

.photo-card {
  position: relative !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
  background: #0f172a !important;
  aspect-ratio: 4 / 3 !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.photo-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

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

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

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

.photo-author {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
}

.photo-caption {
  font-size: 11px !important;
  color: #cbd5e1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-top: 2px !important;
}

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

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

.review-filter-chip {
  padding: 8px 16px !important;
  border-radius: 9999px !important;
  border: 1px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.review-filter-chip:hover {
  border-color: #0f172a !important;
}

.review-filter-chip.active {
  background: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
}

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

.review-item {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
  box-sizing: border-box !important;
}

.review-item:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06) !important;
}

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

.reviewer-profile {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.reviewer-avatar {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #eff6ff !important;
  color: var(--dm-navy, #0a192f) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #bfdbfe !important;
  flex-shrink: 0 !important;
}

.reviewer-name {
  font-weight: 800 !important;
  color: #0f172a !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
}

.verified-buyer-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: #059669 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  margin-top: 3px !important;
}

.review-date-badge {
  font-size: 13px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
}

.review-stars-strip {
  color: #f59e0b !important;
  font-size: 16px !important;
  letter-spacing: 2px !important;
  margin-bottom: 12px !important;
}

.review-headline {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.35 !important;
  font-family: var(--font-heading, sans-serif) !important;
}

.review-body-text {
  color: #475569 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
  flex: 1 !important;
}

.review-attached-img {
  margin-bottom: 16px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
  max-width: 140px !important;
  cursor: pointer !important;
  position: relative !important;
}

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

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

.review-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-top: 14px !important;
  border-top: 1px solid #f1f5f9 !important;
  font-size: 13px !important;
  color: #64748b !important;
}

.helpful-btn {
  background: transparent !important;
  border: 1px solid #cbd5e1 !important;
  padding: 5px 12px !important;
  border-radius: 9999px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
}

.helpful-btn:hover {
  background: #f8fafc !important;
  border-color: #94a3b8 !important;
  color: #0f172a !important;
}

.helpful-btn.voted {
  background: #ecfdf5 !important;
  border-color: #a7f3d0 !important;
  color: #047857 !important;
}

/* Responsive adjustments for reviews */
@media (max-width: 900px) {
  .reviews-summary-card {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 24px !important;
  }
  .reviews-score-col {
    border-right: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding-right: 0 !important;
    padding-bottom: 24px !important;
  }
  .reviews-trust-col {
    border-left: none !important;
    border-top: 1px solid #e2e8f0 !important;
    padding-left: 0 !important;
    padding-top: 24px !important;
  }
  .photos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .reviews-masonry {
    grid-template-columns: 1fr !important;
  }
}


/* ==========================================================================
   17. MOBILE NAVIGATION DRAWER & STICKY BUY BAR (v8)
   ========================================================================== */
.btn-mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: transparent;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.btn-mobile-menu-toggle:hover {
  background: #f8fafc;
  color: var(--dm-blue, #0057c8);
}
@media (max-width: 991px) {
  .btn-mobile-menu-toggle {
    display: inline-flex !important;
  }
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: none;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
  display: block;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 86%;
  max-width: 360px;
  background: #ffffff;
  z-index: 10002;
  box-shadow: 10px 0 30px rgba(0,0,0,0.25);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--dm-red, #d32f2f);
  background: #ffffff;
}
.mobile-drawer-logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.btn-close-mobile-menu {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 22px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
}

.mobile-drawer-body {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin: 12px 0 4px 10px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.15s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: #f1f5f9;
  color: var(--dm-blue, #0057c8);
}
.mobile-nav-link .link-icon {
  font-size: 18px;
  width: 22px;
  text-align: center;
}

.mobile-drawer-footer {
  padding: 16px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}
.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--dm-navy, #0a192f);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.mobile-sticky-buy-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 10px 16px;
  z-index: 9980;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.mobile-sticky-buy-bar.visible {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .mobile-sticky-buy-bar {
    display: block !important;
  }
}
.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.mobile-sticky-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.mobile-sticky-thumb {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  flex-shrink: 0;
}
.mobile-sticky-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.mobile-sticky-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--dm-red, #d32f2f);
}
.btn-mobile-sticky-buy {
  background: var(--dm-red, #d32f2f);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(211, 47, 47, 0.3);
}


/* ==========================================================================
   18. AUTHENTIC SHOPIFY-STYLE CUSTOMER REVIEWS WIDGET (v9)
   Matches high-converting Shopify apps (Judge.me, Loox, Okendo)
   ========================================================================== */
.shopify-reviews-widget {
  max-width: 1120px !important;
  margin: 48px auto 0 !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
  padding: 40px !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .shopify-reviews-widget {
    padding: 24px 16px !important;
    border-radius: 12px !important;
    margin: 32px auto 0 !important;
  }
}

/* Widget Header: Score, Bars, Write a review CTA */
.srw-header {
  display: grid !important;
  grid-template-columns: 240px 1fr 220px !important;
  gap: 32px !important;
  align-items: center !important;
  padding-bottom: 32px !important;
  border-bottom: 1px solid #edf2f7 !important;
}

@media (max-width: 900px) {
  .srw-header {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

.srw-overall {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  border-right: 1px solid #edf2f7 !important;
  padding-right: 28px !important;
}

@media (max-width: 900px) {
  .srw-overall {
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1px solid #edf2f7 !important;
    padding-bottom: 20px !important;
  }
}

.srw-score {
  font-family: var(--font-heading, 'Saira', sans-serif) !important;
  font-size: 52px !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  line-height: 1 !important;
  margin-bottom: 4px !important;
}

.srw-stars {
  color: #f59e0b !important;
  font-size: 20px !important;
  letter-spacing: 2px !important;
  margin-bottom: 6px !important;
}

.srw-count {
  font-size: 13px !important;
  color: #64748b !important;
  font-weight: 600 !important;
}

.srw-recommend {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #ecfdf5 !important;
  color: #047857 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 5px 10px !important;
  border-radius: 20px !important;
  margin-top: 10px !important;
  border: 1px solid #a7f3d0 !important;
}

/* Distribution Bars */
.srw-distribution {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.srw-bar-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 13px !important;
}

.srw-bar-star {
  width: 32px !important;
  font-weight: 700 !important;
  color: #475569 !important;
}

.srw-bar-track {
  flex: 1 !important;
  height: 8px !important;
  background: #f1f5f9 !important;
  border-radius: 9999px !important;
  overflow: hidden !important;
}

.srw-bar-fill {
  height: 100% !important;
  background: #f59e0b !important;
  border-radius: 9999px !important;
}

.srw-bar-num {
  width: 28px !important;
  text-align: right !important;
  font-weight: 600 !important;
  color: #64748b !important;
}

/* CTA Column */
.srw-cta-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  border-left: 1px solid #edf2f7 !important;
  padding-left: 24px !important;
}

@media (max-width: 900px) {
  .srw-cta-col {
    border-left: none !important;
    padding-left: 0 !important;
  }
}

.btn-srw-write {
  width: 100% !important;
  background: #0f172a !important;
  color: #ffffff !important;
  border: none !important;
  padding: 13px 20px !important;
  border-radius: 8px !important;
  font-family: var(--font-heading, 'Saira', sans-serif) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15) !important;
}

.btn-srw-write:hover {
  background: var(--dm-blue, #0057c8) !important;
  transform: translateY(-1px) !important;
}

.srw-trust-badge {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 11px !important;
  color: #059669 !important;
  font-weight: 700 !important;
}

/* Customer Photos Strip */
.srw-photos-section {
  padding: 24px 0 !important;
  border-bottom: 1px solid #edf2f7 !important;
}

.srw-section-title {
  font-family: var(--font-heading, 'Saira', sans-serif) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
}

.srw-photos-strip {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
}

@media (max-width: 640px) {
  .srw-photos-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.srw-photo-thumb {
  position: relative !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
  background: #0f172a !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.srw-photo-thumb:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12) !important;
}

.srw-photo-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
  display: block !important;
}

.srw-photo-thumb:hover img {
  transform: scale(1.06) !important;
}

.srw-photo-caption-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.85) 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 10px !important;
  color: #ffffff !important;
  pointer-events: none !important;
}

.srw-photo-author {
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
}

.srw-photo-sub {
  font-size: 10px !important;
  color: #cbd5e1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Toolbar & Filters */
.srw-toolbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid #edf2f7 !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.srw-filter-pills {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.srw-pill {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #475569 !important;
  padding: 7px 15px !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
}

.srw-pill:hover {
  border-color: #0f172a !important;
  color: #0f172a !important;
}

.srw-pill.active {
  background: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
}

.srw-sort-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: #64748b !important;
  font-weight: 600 !important;
}

.srw-sort-select {
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  background: #ffffff !important;
  cursor: pointer !important;
}

/* Reviews List & Cards (Shopify Style) */
.srw-reviews-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  padding-top: 24px !important;
}

.srw-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 24px !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02) !important;
}

.srw-card:hover {
  border-color: #cbd5e1 !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05) !important;
}

.srw-card-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  margin-bottom: 12px !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.srw-author-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.srw-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: #eff6ff !important;
  color: var(--dm-blue, #0057c8) !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1.5px solid #bfdbfe !important;
  flex-shrink: 0 !important;
}

.srw-author-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.srw-author-name {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
}

.srw-verified-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: #059669 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  background: #ecfdf5 !important;
  padding: 2px 8px !important;
  border-radius: 12px !important;
  width: fit-content !important;
}

.srw-date {
  font-size: 12px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
}

.srw-card-stars {
  color: #f59e0b !important;
  font-size: 15px !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 8px !important;
}

.srw-card-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.35 !important;
  font-family: var(--font-heading, 'Saira', sans-serif) !important;
}

.srw-card-body {
  font-size: 14px !important;
  color: #475569 !important;
  line-height: 1.65 !important;
  margin: 0 0 16px 0 !important;
}

.srw-card-media {
  margin-bottom: 14px !important;
  display: flex !important;
  gap: 10px !important;
}

.srw-card-thumb {
  width: 80px !important;
  height: 80px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
  cursor: pointer !important;
}

.srw-card-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.2s ease !important;
}

.srw-card-thumb:hover img {
  transform: scale(1.08) !important;
}

.srw-card-footer {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-top: 12px !important;
  border-top: 1px solid #f1f5f9 !important;
  font-size: 12px !important;
  color: #64748b !important;
}

.srw-helpful-btn {
  background: transparent !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 20px !important;
  padding: 4px 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  transition: all 0.15s ease !important;
}

.srw-helpful-btn:hover {
  background: #f8fafc !important;
  border-color: #0f172a !important;
  color: #0f172a !important;
}

.srw-helpful-btn.voted {
  background: #ecfdf5 !important;
  border-color: #a7f3d0 !important;
  color: #047857 !important;
}

/* Lightbox Modal for Reviews */
.srw-lightbox {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(15, 23, 42, 0.9) !important;
  z-index: 10005 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
}

.srw-lightbox.open {
  display: flex !important;
}

.srw-lightbox-content {
  position: relative !important;
  max-width: 700px !important;
  width: 100% !important;
  background: #000000 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5) !important;
}

.srw-lightbox-img {
  width: 100% !important;
  max-height: 75vh !important;
  object-fit: contain !important;
  display: block !important;
}

.srw-lightbox-caption {
  padding: 14px 20px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  background: #0f172a !important;
}

.btn-srw-lightbox-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  background: rgba(0,0,0,0.6) !important;
  color: #ffffff !important;
  border: none !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

/* ==========================================================================
   19. STOREWIDE GLOW-UP: ELEVATED INDUSTRIAL AESTHETIC
   ========================================================================== */
/* Live Pulsating Stock Dot */
.pulsating-dot {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background-color: #10b981 !important;
  display: inline-block !important;
  position: relative !important;
  margin-right: 6px !important;
}

.pulsating-dot::after {
  content: '' !important;
  position: absolute !important;
  inset: -3px !important;
  border-radius: 50% !important;
  background-color: rgba(16, 185, 129, 0.4) !important;
  animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite !important;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* Reassurance Badges Strip on PDP */
.pdp-reassurance-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  margin-top: 24px !important;
  padding-top: 20px !important;
  border-top: 1px solid var(--border-light) !important;
}

.pdp-reassurance-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #334155 !important;
}

.pdp-reassurance-item .icon {
  font-size: 18px !important;
  flex-shrink: 0 !important;
}

/* Category Grid Polish */
.cat-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.cat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important;
}

/* Product Card Polish */
.equipment-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
.equipment-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08) !important;
  border-color: #cbd5e1 !important;
}

/* Fuel Pills on Product Cards */
.fuel-badge-strip {
  display: flex !important;
  gap: 6px !important;
  margin-bottom: 8px !important;
  flex-wrap: wrap !important;
}

.fuel-pill {
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
}

.fuel-pill.gas { background: #fef3c7 !important; color: #92400e !important; }
.fuel-pill.lpg { background: #dbeafe !important; color: #1e40af !important; }
.fuel-pill.ng  { background: #dcfce7 !important; color: #166534 !important; }


/* ==========================================================================
   V10 OVERRIDES: 3-4 COLUMN PHOTO REVIEW GRID, WHITE CART TITLE, NO BLACK TAGS, DEEP NAVY PALETTE
   ========================================================================== */

/* 1. Eliminate Black Tags: Upgrade to Vibrant Blue / Navy Gradients */
.equipment-card-badge,
.pdp-badge-top {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-left: none !important;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35) !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
}

.section-tag {
  color: #0284c7 !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
}

/* 2. Cart Drawer Header & Title: 100% Crisp White */
.cart-header {
  background: #0c1e38 !important;
  color: #ffffff !important;
  border-bottom: 3px solid #0284c7 !important;
  padding: 18px 24px !important;
}

.cart-title,
.cart-header h2,
.cart-header .cart-title,
h2.cart-title,
.cart-header * {
  color: #ffffff !important;
  font-family: var(--font-heading, 'Saira', sans-serif) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: 0.6px !important;
}

.btn-close-cart {
  color: #ffffff !important;
  opacity: 0.9 !important;
}
.btn-close-cart:hover {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* 3. Deep Industrial Midnight Navy Palette */
.marquee-shell {
  background: #0c1e38 !important;
  border-bottom: 2px solid #0284c7 !important;
  color: #f8fafc !important;
}

.topbar-shell {
  background: #0f2442 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
}

.footer-shell {
  background: #0c1e38 !important;
  border-top: 4px solid #0284c7 !important;
  color: #cbd5e1 !important;
}

.footer-col-title {
  color: #ffffff !important;
  font-weight: 800 !important;
}

.mobile-drawer-header {
  background: #0c1e38 !important;
  color: #ffffff !important;
  border-bottom: 2px solid #0284c7 !important;
}
.mobile-drawer-header .btn-close-mobile-menu {
  color: #ffffff !important;
}

/* 4. The 3-4 Column Photo Review Card Grid */
.srw-reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin-top: 28px !important;
}

@media (max-width: 1200px) {
  .srw-reviews-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
  }
}

@media (max-width: 840px) {
  .srw-reviews-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 520px) {
  .srw-reviews-grid {
    grid-template-columns: 1fr !important;
  }
}

.srw-photo-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(12, 30, 56, 0.04) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  display: flex !important;
  flex-direction: column !important;
}

.srw-photo-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px rgba(12, 30, 56, 0.12) !important;
  border-color: #cbd5e1 !important;
}

.srw-card-media {
  position: relative !important;
  width: 100% !important;
  height: 220px !important;
  background: #f1f5f9 !important;
  cursor: pointer !important;
  overflow: hidden !important;
}

.srw-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.35s ease !important;
}

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

.srw-zoom-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(12, 30, 56, 0.35) !important;
  opacity: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  gap: 6px !important;
  transition: opacity 0.2s ease !important;
  backdrop-filter: blur(2px) !important;
}

.srw-card-media:hover .srw-zoom-overlay {
  opacity: 1 !important;
}

.srw-card-body {
  padding: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  box-sizing: border-box !important;
}

.srw-card-stars {
  color: #f59e0b !important;
  font-size: 15px !important;
  letter-spacing: 2px !important;
  margin-bottom: 8px !important;
}

.srw-card-title {
  font-family: var(--font-heading, 'Saira', sans-serif) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #0c1e38 !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.35 !important;
}

.srw-card-body-text {
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: #475569 !important;
  margin: 0 0 14px 0 !important;
  flex-grow: 1 !important;
}

.srw-card-meta {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-top: 12px !important;
  border-top: 1px solid #f1f5f9 !important;
  margin-bottom: 12px !important;
}

.srw-card-author-info {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.srw-card-avatar {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #0284c7, #0369a1) !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.srw-card-name {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #0c1e38 !important;
}

.srw-card-verified {
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #059669 !important;
}

.srw-card-date {
  font-size: 11px !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
}

.srw-helpful-btn {
  align-self: flex-start !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px !important;
  padding: 5px 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
}

.srw-helpful-btn:hover {
  background: #eff6ff !important;
  border-color: #93c5fd !important;
  color: #0284c7 !important;
}


/* ==========================================================================
   19. ENHANCED MOBILE RESPONSIVE SUITE & TOUCH GALLERY (v11)
   ========================================================================== */

/* Product Gallery Interactive Elements */
.pdp-main-img-wrap {
  position: relative !important;
  width: 100% !important;
  height: 440px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 16px !important;
  background: #f8fafc !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  touch-action: pan-y !important;
  border: 1px solid var(--border-light, #e2e8f0) !important;
}

.pdp-main-img {
  max-height: 94% !important;
  max-width: 94% !important;
  object-fit: contain !important;
  display: block !important;
  transition: opacity 0.15s ease, transform 0.2s ease !important;
  pointer-events: none;
}

/* On-Image Navigation Arrows */
.pdp-gallery-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(15, 36, 66, 0.8) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 6 !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  padding: 0 !important;
}

.pdp-gallery-arrow:hover {
  background: var(--dm-blue, #0284c7) !important;
  border-color: #ffffff !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.pdp-arrow-prev {
  left: 12px !important;
}

.pdp-arrow-next {
  right: 12px !important;
}

/* Floating Image Counter */
.pdp-gallery-counter {
  position: absolute !important;
  bottom: 14px !important;
  right: 14px !important;
  background: rgba(12, 30, 56, 0.85) !important;
  color: #ffffff !important;
  font-family: var(--font-heading, sans-serif) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  z-index: 5 !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Thumbnails Button Row */
.pdp-thumb-row {
  display: flex !important;
  gap: 10px !important;
  overflow-x: auto !important;
  padding: 4px 2px 10px !important;
  margin-bottom: 16px !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-behavior: smooth !important;
  scrollbar-width: thin !important;
}

.pdp-thumb-row::-webkit-scrollbar {
  height: 6px;
}

.pdp-thumb-row::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.pdp-thumb-btn {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  border: 2px solid var(--border-light, #e2e8f0) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  padding: 3px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.pdp-thumb-btn img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 5px !important;
  display: block !important;
}

.pdp-thumb-btn:hover {
  border-color: var(--dm-blue, #0284c7) !important;
  transform: translateY(-1px) !important;
}

.pdp-thumb-btn.active {
  border-color: var(--dm-blue, #0284c7) !important;
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.35) !important;
}

.pdp-gallery-badges {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #f8fafc !important;
  border: 1px solid var(--border-light, #e2e8f0) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  color: var(--text-muted, #64748b) !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.pdp-gallery-badges strong {
  color: var(--text-dark, #0c1e38) !important;
}

/* Metric Grid Classes */
.pdp-metric-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 24px !important;
  text-align: center !important;
}

.pdp-metric-cell {
  background: #f8fafc !important;
  border: 1px solid var(--border-light, #e2e8f0) !important;
  border-radius: 6px !important;
  padding: 10px 6px !important;
  box-sizing: border-box !important;
}

.pdp-metric-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--text-muted, #64748b) !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.pdp-metric-val {
  font-family: var(--font-heading, sans-serif) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  margin-top: 2px !important;
}

/* Included In The Box Grid */
.pdp-included-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
}

/* Card classes for lower sections */
.pdp-details-card {
  background: #ffffff !important;
  border: 1px solid var(--border-light, #e2e8f0) !important;
  border-radius: 12px !important;
  padding: 32px !important;
  box-shadow: var(--shadow-sm) !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   TABLET & MOBILE BREAKPOINTS (<= 991px & <= 768px & <= 480px)
   ========================================================================== */

@media (max-width: 991px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .header-layout {
    height: 60px !important;
    padding: 0 12px !important;
  }
  .brand-logo-img {
    height: 32px !important;
    max-width: 140px !important;
  }
  .pdp-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative !important;
  }

  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Top Announcement Marquee */
  .marquee-shell {
    font-size: 11px !important;
    padding: 5px 0 !important;
  }
  .marquee-span {
    padding: 0 18px !important;
  }

  /* Header */
  .site-shell {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
  }
  .header-layout {
    height: 56px !important;
    padding: 0 10px !important;
    gap: 8px !important;
  }
  .brand-logo-img {
    height: 28px !important;
    max-width: 125px !important;
  }
  .btn-mobile-menu-toggle {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 8px !important;
  }
  .btn-cart-trigger {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 8px !important;
  }

  /* Hero Section */
  .hero-wrap {
    padding: 24px 0 36px !important;
  }
  .hero-content {
    padding: 0 !important;
    text-align: center !important;
  }
  .hero-pill {
    font-size: 11px !important;
    padding: 5px 12px !important;
    display: inline-flex !important;
    margin-bottom: 14px !important;
    white-space: normal !important;
    text-align: center !important;
  }
  .hero-content h1 {
    font-size: 27px !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    word-break: break-word !important;
  }
  .hero-content p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
  }
  .hero-pill-badges {
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  .hero-badge-chip {
    width: 100% !important;
    font-size: 11px !important;
    padding: 6px 10px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .hero-actions {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 13px 18px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
  }
  .hero-visual-card {
    padding: 14px !important;
    margin-top: 24px !important;
  }
  .hero-visual-card img {
    max-height: 240px !important;
    object-fit: contain !important;
  }

  /* Product Detail Page (PDP) Mobile Adaptation */
  .pdp-wrap {
    padding: 16px 0 60px !important;
  }
  .pdp-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .pdp-gallery-card {
    padding: 10px !important;
    border-radius: 12px !important;
    position: static !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .pdp-main-img-wrap {
    height: 290px !important;
    min-height: 260px !important;
    margin-bottom: 10px !important;
    border-radius: 8px !important;
  }
  .pdp-gallery-arrow {
    width: 38px !important;
    height: 38px !important;
  }
  .pdp-arrow-prev {
    left: 8px !important;
  }
  .pdp-arrow-next {
    right: 8px !important;
  }
  .pdp-gallery-counter {
    bottom: 10px !important;
    right: 10px !important;
    font-size: 11px !important;
    padding: 3px 9px !important;
  }
  .pdp-thumb-row {
    gap: 8px !important;
    padding: 2px 2px 8px !important;
    margin-bottom: 12px !important;
  }
  .pdp-thumb-btn {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 6px !important;
    padding: 2px !important;
  }
  .pdp-gallery-badges {
    font-size: 11px !important;
    padding: 10px 12px !important;
    gap: 6px !important;
  }

  .pdp-info-card {
    padding: 18px 14px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .pdp-title {
    font-size: 20px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }
  .equipment-rating-row {
    margin-bottom: 14px !important;
  }
  .pdp-price-box {
    padding: 14px 12px !important;
    margin-bottom: 16px !important;
    border-radius: 8px !important;
  }
  .pdp-current-price {
    font-size: 28px !important;
  }
  .pdp-msrp {
    font-size: 15px !important;
  }
  .pdp-save-tag {
    font-size: 11px !important;
    padding: 3px 6px !important;
  }

  /* Metric grid 2x2 */
  .pdp-metric-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 18px !important;
  }
  .pdp-metric-cell {
    padding: 8px 6px !important;
  }
  .pdp-metric-val {
    font-size: 14px !important;
  }

  /* Action buttons */
  .pdp-actions-box {
    margin-bottom: 18px !important;
  }
  .btn-pdp-add-cart {
    height: 48px !important;
    font-size: 13px !important;
    letter-spacing: 0.3px !important;
  }
  .btn-pdp-buy-now {
    height: 50px !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
  }

  /* Lower detailed cards */
  .pdp-details-card {
    padding: 18px 14px !important;
    border-radius: 12px !important;
  }
  .pdp-details-card h2 {
    font-size: 20px !important;
    margin-bottom: 14px !important;
  }
  .pdp-included-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .pdp-specs-table th,
  .pdp-specs-table td {
    padding: 8px 10px !important;
    font-size: 12px !important;
    word-break: break-word !important;
  }
  .pdp-specs-table th {
    width: 42% !important;
  }

  /* Reviews widget mobile */
  .shopify-reviews-widget {
    padding: 20px 12px !important;
    border-radius: 12px !important;
    margin-top: 32px !important;
  }
  .srw-header {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-bottom: 20px !important;
  }
  .srw-overall {
    border-right: none !important;
    border-bottom: 1px solid #edf2f7 !important;
    padding-right: 0 !important;
    padding-bottom: 16px !important;
  }
  .srw-score {
    font-size: 42px !important;
  }
  .srw-reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .srw-card-media {
    height: 210px !important;
  }

  /* Sticky Mobile Buy Bar */
  .mobile-sticky-buy-bar {
    display: block !important;
    padding: 8px 12px !important;
    padding-bottom: max(8px, env(safe-area-inset-bottom)) !important;
  }
  .mobile-sticky-title {
    max-width: 125px !important;
    font-size: 12px !important;
  }
  .mobile-sticky-price {
    font-size: 14px !important;
  }
  .btn-mobile-sticky-buy {
    padding: 9px 14px !important;
    font-size: 12px !important;
  }

  /* Catalog grid on mobile */
  .catalog-section {
    padding: 24px 0 40px !important;
  }
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .equipment-card {
    border-radius: 12px !important;
  }
  .equipment-card-content {
    padding: 16px 14px !important;
  }
  .equipment-title {
    font-size: 17px !important;
    line-height: 1.3 !important;
  }
  .equipment-price {
    font-size: 24px !important;
  }
  .equipment-card-actions {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .btn-card-cart, .btn-card-details {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }

  /* Footer on mobile */
  .footer-shell {
    padding: 36px 0 20px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-bottom-bar {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }
}

@media (max-width: 390px) {
  .header-layout {
    padding: 0 8px !important;
  }
  .brand-logo-img {
    max-width: 115px !important;
    height: 25px !important;
  }
  .pdp-main-img-wrap {
    height: 260px !important;
  }
  .pdp-title {
    font-size: 18px !important;
  }
  .btn-pdp-buy-now {
    font-size: 12px !important;
  }
  .pdp-thumb-btn {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }
}
