/**
 * Products Page Specific Stylesheet - Hindustan Power EV
 * 99% Visual Fidelity to Approved Mockup
 */

/* ==========================================================================
   1. STICKY NAVIGATION ENHANCEMENTS
   ========================================================================== */
.hp-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  padding: 1rem 0;
}

.hp-site-header.is-scrolled,
.hp-site-header.hp-header-solid {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}

.hp-site-header.is-scrolled .hp-logo-title,
.hp-site-header.hp-header-solid .hp-logo-title {
  color: #0b0d19 !important;
}

.hp-site-header.is-scrolled .hp-nav-menu a,
.hp-site-header.hp-header-solid .hp-nav-menu a {
  color: #334155 !important;
}

.hp-site-header.is-scrolled .hp-nav-menu a:hover,
.hp-site-header.is-scrolled .hp-nav-menu a.current-menu-item,
.hp-site-header.hp-header-solid .hp-nav-menu a:hover,
.hp-site-header.hp-header-solid .hp-nav-menu a.current-menu-item {
  color: #11b2a4 !important;
}

.hp-nav-menu a.current-menu-item {
  position: relative;
  color: #11b2a4 !important;
  font-weight: 600;
}

.hp-nav-menu a.current-menu-item::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #11b2a4;
  border-radius: 2px;
}

/* ==========================================================================
   2. PREMIUM HERO SECTION
   ========================================================================== */
.hp-products-hero {
  position: relative;
  background: linear-gradient(135deg, #090e17 0%, #0d192b 50%, #070c14 100%);
  min-height: 650px;
  padding-top: 130px;
  padding-bottom: 70px;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hp-products-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(17, 178, 164, 0.18) 0%, rgba(17, 178, 164, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hp-products-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hp-hero-content {
  max-width: 620px;
}

.hp-hero-h1 {
  font-family: var(--hp-font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hp-hero-h1 span.hp-highlight {
  color: #11b2a4;
  background: linear-gradient(90deg, #11b2a4 0%, #36d1c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hp-hero-subheading {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hp-hero-features-row {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hp-hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hp-hero-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 178, 164, 0.5);
  background: rgba(17, 178, 164, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11b2a4;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(17, 178, 164, 0.2);
}

.hp-hero-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.hp-hero-feature-text p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 2px 0 0 0;
}

.hp-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-hero-pedestal {
  position: absolute;
  bottom: 0px;
  width: 420px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(17, 178, 164, 0.45) 0%, rgba(17, 178, 164, 0.1) 50%, transparent 75%);
  border-radius: 50%;
  border: 2px solid rgba(17, 178, 164, 0.35);
  transform: rotateX(70deg);
  box-shadow: 0 0 40px rgba(17, 178, 164, 0.3);
  pointer-events: none;
}

.hp-hero-scooter-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
  animation: heroFloat 5s ease-in-out infinite;
}

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

/* ==========================================================================
   3. SEARCH & CATEGORY FILTER BAR
   ========================================================================== */
.hp-search-filter-section {
  position: relative;
  z-index: 10;
  margin-top: -30px;
  margin-bottom: 2.5rem;
}

.hp-search-filter-bar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hp-search-input-wrap {
  position: relative;
  min-width: 260px;
  flex: 1;
}

.hp-search-input-wrap input {
  width: 100%;
  padding: 0.75rem 2.75rem 0.75rem 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-family: var(--hp-font-body);
  font-size: 0.9rem;
  color: #1e293b;
  outline: none;
  transition: all 0.2s ease;
}

.hp-search-input-wrap input:focus {
  background: #ffffff;
  border-color: #11b2a4;
  box-shadow: 0 0 0 3px rgba(17, 178, 164, 0.15);
}

.hp-search-input-wrap svg {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.hp-category-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hp-pill-btn {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-family: var(--hp-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

.hp-pill-btn.active {
  background: #11b2a4;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(17, 178, 164, 0.25);
}

.hp-sort-dropdown-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.hp-sort-dropdown-wrap label {
  font-family: var(--hp-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
}

.hp-sort-dropdown-wrap select {
  padding: 0.55rem 2rem 0.55rem 1rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  font-family: var(--hp-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #1e293b;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  transition: border-color 0.2s ease;
}

.hp-sort-dropdown-wrap select:focus {
  border-color: #11b2a4;
}

/* ==========================================================================
   4. SIDEBAR & PRODUCT GRID LAYOUT
   ========================================================================== */
.hp-products-main-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* Sidebar Styling - Untouched Natural Layout */
.hp-sidebar-filter-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

/* Products Grid Area - Inline Scrolling Aligned to Sidebar Bottom */
.hp-products-grid-area {
  width: 100%;
  max-height: 840px;
  overflow-y: auto;
  padding-right: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: #11b2a4 #f1f5f9;
}

.hp-products-grid-area::-webkit-scrollbar {
  width: 6px;
}

.hp-products-grid-area::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.hp-products-grid-area::-webkit-scrollbar-thumb {
  background: #11b2a4;
  border-radius: 4px;
}

.hp-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
}

.hp-filter-header h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #0f172a;
}

.hp-filter-clear-btn {
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: underline;
}

.hp-filter-clear-btn:hover {
  color: #11b2a4;
}

.hp-sidebar-search {
  position: relative;
  margin-bottom: 1.25rem;
}

.hp-sidebar-search input {
  width: 100%;
  padding: 0.6rem 2.25rem 0.6rem 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.85rem;
  outline: none;
}

.hp-sidebar-search svg {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

/* Accordion Filter Section */
.hp-filter-group {
  border-bottom: 1px solid #f1f5f9;
  padding: 1rem 0;
}

.hp-filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.hp-filter-group-header h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hp-filter-group-header svg {
  color: #64748b;
  transition: transform 0.25s ease;
}

.hp-filter-group.collapsed .hp-filter-group-header svg {
  transform: rotate(-90deg);
}

.hp-filter-group.collapsed .hp-filter-options {
  display: none;
}

.hp-filter-options {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hp-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: #475569;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hp-checkbox-label:hover {
  color: #0f172a;
}

.hp-checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.hp-checkbox-label input[type="checkbox"]:checked {
  background: #11b2a4;
  border-color: #11b2a4;
}

.hp-checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hp-count-badge {
  margin-left: auto;
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Price Range Slider */
.hp-price-slider-wrap {
  margin-top: 0.75rem;
}

.hp-price-val-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
}

.hp-price-slider-wrap input[type="range"] {
  width: 100%;
  accent-color: #11b2a4;
}

.hp-btn-reset-filters {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.75rem;
  background: #ffffff;
  border: 1.5px solid #11b2a4;
  color: #11b2a4;
  border-radius: 8px;
  font-family: var(--hp-font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.hp-btn-reset-filters:hover {
  background: #11b2a4;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(17, 178, 164, 0.25);
}

/* Main Grid Header */
.hp-products-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.hp-products-found-text {
  font-family: var(--hp-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
}

.hp-products-found-text span {
  color: #11b2a4;
}

/* Product Grid */
.hp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Product Card Component */
.hp-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.hp-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.hp-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hp-badge-new {
  background: #11b2a4;
  color: #ffffff;
}

.hp-badge-bestseller {
  background: #eab308;
  color: #ffffff;
}

.hp-card-wishlist {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 5;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hp-card-wishlist:hover,
.hp-card-wishlist.active {
  color: #ef4444;
  transform: scale(1.15);
}

.hp-card-img-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

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

.hp-product-card:hover .hp-card-img-wrap img {
  transform: scale(1.06);
}

.hp-card-title {
  font-family: var(--hp-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.hp-card-price-wrap {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.hp-card-price-wrap span.onwards {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

.hp-card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 1rem;
}

.hp-spec-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hp-spec-icon {
  color: #11b2a4;
  margin-bottom: 0.25rem;
}

.hp-spec-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.1;
}

.hp-spec-lbl {
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 2px;
}

.hp-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.hp-btn-card-outline {
  padding: 0.55rem 0.25rem;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  border-radius: 6px;
  font-family: var(--hp-font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hp-btn-card-outline:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
}

.hp-btn-card-fill {
  padding: 0.55rem 0.25rem;
  border: 1px solid #11b2a4;
  background: #11b2a4;
  color: #ffffff;
  border-radius: 6px;
  font-family: var(--hp-font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hp-btn-card-fill:hover {
  background: #0ea194;
  box-shadow: 0 4px 12px rgba(17, 178, 164, 0.3);
}

/* Pagination */
.hp-pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.hp-page-num {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-family: var(--hp-font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hp-page-num:hover {
  border-color: #11b2a4;
  color: #11b2a4;
}

.hp-page-num.active {
  background: #11b2a4;
  border-color: #11b2a4;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(17, 178, 164, 0.25);
}

/* ==========================================================================
   5. CTA BANNER STRIP
   ========================================================================== */
.hp-cta-banner-strip {
  background: #091322;
  border-radius: 20px;
  padding: 3rem 3.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hp-cta-banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hp-cta-left-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.hp-cta-left-content p {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hp-cta-cards-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hp-cta-action-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hp-cta-action-card:hover {
  background: rgba(17, 178, 164, 0.15);
  border-color: rgba(17, 178, 164, 0.4);
}

.hp-cta-card-icon {
  color: #11b2a4;
  display: flex;
  align-items: center;
}

.hp-cta-card-text h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.hp-cta-card-text span {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
}

.hp-cta-scooter-visual img {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

/* ==========================================================================
   6. FAQ ACCORDION SECTION
   ========================================================================== */
.hp-faq-wrapper {
  margin-bottom: 3.5rem;
}

.hp-faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hp-faq-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
}

.hp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.hp-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hp-faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.hp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.hp-faq-question h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.hp-faq-icon {
  font-size: 1.2rem;
  color: #64748b;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.hp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

.hp-faq-item.active .hp-faq-answer {
  max-height: 200px;
  margin-top: 0.75rem;
}

.hp-faq-item.active .hp-faq-icon {
  transform: rotate(45deg);
  color: #11b2a4;
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS & MOBILE FILTER CHIPS
   ========================================================================== */
.hp-filter-chips-mobile {
  display: none;
  overflow-x: auto;
  white-space: nowrap;
  gap: 0.75rem;
  padding: 0.75rem 0 1rem 0;
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hp-filter-chips-mobile::-webkit-scrollbar {
  display: none;
}

.hp-filter-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 99px;
  background: #f1f5f9;
  color: #475569;
  font-family: var(--hp-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}

.hp-filter-chip-btn.active {
  background: #11b2a4;
  color: #ffffff;
  border-color: #11b2a4;
  box-shadow: 0 4px 12px rgba(17, 178, 164, 0.25);
}

@media (max-width: 1024px) {
  .hp-filter-chips-mobile {
    display: flex;
  }

  .hp-products-main-layout {
    grid-template-columns: 1fr;
  }

  .hp-sidebar-filter-card {
    position: static;
    margin-bottom: 2rem;
  }

  .hp-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .hp-products-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hp-hero-content {
    max-width: 100%;
  }

  .hp-hero-features-row {
    justify-content: center;
  }

  .hp-cta-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hp-cta-cards-row {
    justify-content: center;
  }

  .hp-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hp-products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hp-hero-h1 {
    font-size: 2.1rem;
  }

  .hp-hero-features-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-search-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hp-sort-dropdown-wrap {
    margin-left: 0;
    justify-content: space-between;
  }

  .hp-btn-inquire-now,
  .hp-btn-view-details {
    min-height: 48px;
  }
}
