/**
 * Hindustan Power EV - Master Global Stylesheet
 * High specificity rules ensuring 100% visual fidelity to approved Chetak-inspired mockup.
 */

/* 1. Resets & Container Constraints */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

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

button {
  font-family: 'Outfit', sans-serif;
}

.hp-container {
  width: 100% !important;
  max-width: var(--hp-container-max, 1320px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
  box-sizing: border-box !important;
}

@media (max-width: 1440px) {
  .hp-container {
    max-width: 1200px !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

@media (max-width: 1024px) {
  .hp-container {
    width: 90% !important;
    max-width: 1000px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 768px) {
  .hp-container {
    width: 92% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Text Balance & Orphan Control */
h1, h2, h3, .hp-section-title {
  text-wrap: balance;
}

/* Reset WP Block Wrappers inside containers */
.hp-container > div,
.hp-container > header,
.hp-container > footer {
  max-width: 100% !important;
}

/* 2. Reusable Buttons & Badges */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hp-btn-primary {
  background-color: #11b2a4;
  color: #ffffff;
  border-color: #11b2a4;
  box-shadow: 0 8px 20px rgba(17, 178, 164, 0.35);
}

.hp-btn-primary:hover {
  background-color: #0ea194;
  border-color: #0ea194;
  transform: translateY(-2px);
}

.hp-btn-outline {
  background-color: transparent;
  color: #0f172a;
  border-color: #cbd5e1;
}

.hp-btn-outline:hover {
  border-color: #11b2a4;
  color: #11b2a4;
  background-color: rgba(17, 178, 164, 0.08);
}

.hp-btn-sm {
  padding: 0.65rem 1.35rem;
  font-size: 0.8rem;
}

.hp-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #11b2a4;
}

.hp-text-teal {
  color: #11b2a4 !important;
}

/* 3. Header & Navigation */
.hp-site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  background: transparent;
}

.hp-header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.hp-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.hp-logo-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #11b2a4 0%, #0c8a7f 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(17, 178, 164, 0.4);
}

.hp-logo-badge span {
  font-size: 0.55rem;
}

.hp-logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hp-logo-title span {
  color: #11b2a4;
}

.hp-logo-tagline {
  font-size: 0.65rem;
  color: #94a3b8;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.hp-nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.hp-nav-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hp-nav-menu a:hover,
.hp-nav-menu a.current-menu-item {
  color: #ffffff;
}

.hp-mobile-toggle {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  z-index: 1002;
}

/* 4. Section 1: Hero */
.hp-hero-section {
  padding-top: 150px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 75% 35%, #1d213b 0%, #080912 75%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hp-hero-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 1fr !important;
  gap: 3rem !important;
  align-items: center !important;
  width: 100% !important;
}

.hp-hero-title {
  font-size: clamp(3rem, 5.5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hp-hero-desc {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #94a3b8;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hp-price-box {
  background: rgba(20, 24, 46, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  width: 100%;
  max-width: 290px;
  box-sizing: border-box;
}

.hp-price-box-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.hp-price-box-val {
  font-family: 'Outfit', sans-serif;
  font-size: 2.35rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hp-price-box-sub {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.hp-hero-specs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.hp-hero-spec-col {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.hp-hero-spec-col svg {
  width: 22px;
  height: 22px;
  color: #11b2a4;
  flex-shrink: 0;
}

.hp-spec-bold {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.1;
}

.hp-spec-sub {
  font-size: 0.725rem;
  color: #94a3b8;
}

.hp-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hp-hero-img-wrap {
  width: 100%;
  max-width: 580px;
  filter: drop-shadow(0 35px 50px rgba(0, 0, 0, 0.7));
}

.hp-hero-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}

.hp-hero-thumbs-strip {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.hp-thumb-arrow {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.7;
}

.hp-thumbs-flex {
  display: flex;
  gap: 0.75rem;
}

.hp-hero-thumb {
  width: 85px;
  height: 60px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  cursor: pointer;
}

.hp-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 5. Section 2: Product Range Slider */
.hp-products-grid {
  display: grid !important;
  grid-template-columns: 340px 1fr !important;
  gap: 3.5rem !important;
  align-items: center !important;
}

.hp-products-slider-wrap {
  position: relative !important;
  width: 100% !important;
}

.hp-products-swiper {
  width: 100% !important;
  overflow: hidden !important;
}

.hp-products-swiper .swiper-wrapper {
  display: flex !important;
  gap: 1.5rem !important;
}

.hp-products-swiper .swiper-slide {
  flex: 0 0 calc(25% - 1.15rem) !important;
  min-width: 240px !important;
  box-sizing: border-box !important;
}

.hp-section-title {
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  color: #0f172a;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hp-title-underline {
  width: 48px;
  height: 4px;
  background: #11b2a4;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hp-section-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.hp-scooter-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.hp-scooter-card .hp-card-img-wrap {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.hp-scooter-card .hp-card-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.hp-scooter-card .hp-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: #0f172a;
}

.hp-scooter-card .hp-card-subtitle {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}

.hp-scooter-card .hp-card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.hp-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hp-nav-left { left: -20px; }
.hp-nav-right { right: -20px; }

/* 6. Section 3: Features */
.hp-features-section {
  background: radial-gradient(circle at center, #171933 0%, #080913 100%);
  padding-top: 100px;
  padding-bottom: 100px;
}

.hp-features-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.25fr 1fr !important;
  gap: 2.5rem !important;
  align-items: center !important;
}

.hp-features-col {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.hp-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.hp-col-left .hp-feature-card {
  text-align: right;
  flex-direction: row-reverse;
}

.hp-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11b2a4;
  flex-shrink: 0;
}

.hp-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  color: #ffffff;
}

.hp-feature-card p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

.hp-features-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hp-center-scooter-img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
}

.hp-btn-white {
  background: #ffffff !important;
  color: #0f172a !important;
  border-color: #ffffff !important;
  padding: 0.875rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
}

/* 7. Section 4: About Company */
.hp-about-section {
  background: #f1f5f9;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hp-about-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
}

.hp-about-visuals {
  position: relative;
  min-height: 380px;
}

.hp-about-img-main {
  width: 72%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hp-about-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hp-about-img-overlap {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 58%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 4px solid #ffffff;
  background: #f8fafc;
}

.hp-about-img-overlap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hp-about-badge-float {
  position: absolute;
  top: 30px;
  left: -20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  text-align: center;
}

.hp-badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #11b2a4;
  line-height: 1;
}

.hp-badge-txt {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #475569;
  text-transform: uppercase;
  line-height: 1.2;
}

/* 8. Section 5: Trust Strip */
.hp-trust-strip-section {
  background: #181a33;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hp-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}

.hp-trust-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hp-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11b2a4;
  flex-shrink: 0;
}

.hp-trust-text h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.hp-trust-text p {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.3;
}

/* 9. Section 6: Trending Bikes */
.hp-trending-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hp-trending-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hp-trending-img-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-trending-img-wrap img {
  max-height: 100%;
  object-fit: contain;
}

.hp-trending-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #0f172a;
}

.hp-trending-specs-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.hp-trending-specs-grid .hp-spec-lbl {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
}

.hp-trending-specs-grid .hp-spec-val {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

/* 10. Section 7: Why Choose Us */
.hp-why-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.25fr !important;
  gap: 4rem !important;
  align-items: center !important;
}

.hp-why-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 0;
  list-style: none;
}

.hp-why-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.hp-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(17, 178, 164, 0.12);
  color: #11b2a4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-why-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.25rem !important;
}

.hp-stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.25rem;
  text-align: center;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hp-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #11b2a4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hp-stat-label span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  line-height: 1.3;
}

/* 11. Section 8: Dealer Locator */
.hp-dealer-box {
  background: linear-gradient(135deg, #181a33 0%, #0b0d19 100%);
  border-radius: 16px;
  padding: 3rem 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hp-dealer-map-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17, 178, 164, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.7;
  pointer-events: none;
}

.hp-dealer-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.hp-dealer-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.hp-dealer-content p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.hp-map-pin {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(17, 178, 164, 0.15);
  border: 2px solid #11b2a4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11b2a4;
  box-shadow: 0 0 30px rgba(17, 178, 164, 0.4);
}

/* 12. Section 9: Footer */
.hp-site-footer {
  background-color: #121426;
  color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.hp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.hp-footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hp-footer-brand-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  text-align: left;
}

.hp-footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  text-align: left !important;
  width: 100%;
}

.hp-footer-info {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.65;
  text-align: left;
}

.hp-footer-links {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 0.65rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hp-footer-links a {
  font-size: 0.85rem !important;
  color: #94a3b8 !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
  display: block !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hp-footer-links a:hover {
  color: #11b2a4;
}

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

.hp-scroll-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #11b2a4;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
}

/* 13. Responsive Breakpoints */
@media (max-width: 1024px) {
  .hp-hero-grid,
  .hp-about-grid,
  .hp-why-grid {
    grid-template-columns: 1fr;
  }
  .hp-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-products-swiper .swiper-slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
  .hp-features-grid {
    grid-template-columns: 1fr;
  }
  .hp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .hp-trending-grid,
  .hp-why-stats-grid,
  .hp-hero-specs-bar,
  .hp-trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .hp-products-swiper .swiper-slide {
    flex: 0 0 100%;
  }
  .hp-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
