/* ==========================================================================
   ELECTRO LIVE TECH - COMPONENT STYLES & DESIGN SYSTEM LIBRARY
   ========================================================================== */

/* 1. HERO SECTION */
.hero-section {
  padding-top: 130px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #f8fafc 0%, #edf4fc 100%);
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  background: var(--brand-accent-soft);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-full);
  color: var(--brand-cyan);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.hero-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 600px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--brand-cyan);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
}

/* 2. HERO INTAKE CARD PREVIEW */
.hero-card-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-card-preview:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* 3. QUICK CUSTOMER ACTION TILES */
.quick-actions-bar {
  padding: var(--space-8) 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.quick-action-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.quick-action-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-md);
}

.quick-action-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.quick-action-card:hover .quick-action-icon-wrap {
  background: var(--brand-accent-soft);
  transform: scale(1.08);
}

.quick-action-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.quick-action-desc {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.35;
}

/* 4. PRODUCT & SERVICE OVERVIEW TILES */
.ps-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-8);
  align-items: stretch;
}

.ps-banners-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.ps-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.ps-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-cyan);
}

.ps-card-header {
  padding: var(--space-4) var(--space-5);
  background: var(--bg-card);
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.ps-card-img-wrap {
  flex: 1;
  min-height: 220px;
  overflow: hidden;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.ps-feature-card:hover img {
  transform: scale(1.04);
}

.ps-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.ps-service-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.ps-service-tile:hover {
  transform: translateY(-3px);
  border-color: var(--brand-cyan);
  box-shadow: var(--shadow-md);
}

.ps-tile-icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ps-tile-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.ps-service-tile:hover .ps-tile-img {
  transform: scale(1.08);
}

.ps-tile-title {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* 5. CARDS & SURFACES */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

/* 6. BUTTON SYSTEM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-base);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-accent);
  color: #ffffff;
  box-shadow: var(--brand-accent-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
  color: #ffffff;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-surface-alt);
  border-color: var(--brand-cyan);
  color: var(--brand-cyan);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: var(--fs-sm);
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: var(--fs-md);
  border-radius: var(--radius-md);
}

/* 7. BADGES */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge-cyan {
  background: var(--brand-accent-soft);
  color: var(--brand-cyan);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

/* 8. TOAST NOTIFICATIONS */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.toast {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: toastSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid var(--danger); }

@keyframes toastSlideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* 9. MODAL OVERLAY & CARD */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  animation: fadeIn 0.2s ease-out;
}

.modal-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-8);
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalScale 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalScale {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* 10. FLOATING MOBILE CONTACT DOCK */
.floating-contact-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  padding: var(--space-3) var(--space-4);
  z-index: var(--z-sticky);
}

.floating-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1);
}

.btn-float-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.btn-float-action:hover {
  color: var(--brand-cyan);
}

/* 11. GRID SYSTEM & CARD EXTENSIONS */
.card-grid,
.product-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.product-card,
.service-card,
.amc-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.product-card:hover,
.service-card:hover,
.amc-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 14px 28px -4px rgba(2, 132, 199, 0.12), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
}

.gallery-thumb {
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--brand-cyan) !important;
  transform: scale(1.04);
}

/* EXPLORE PRODUCTS CAROUSEL BASE STYLES (DESKTOP DEFAULT) */
#explore-products-scroll-container,
.explore-products-scroll-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 16px 4px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.explore-product-card {
  flex: 0 0 240px;
  min-width: 240px;
  width: 240px;
  max-width: 240px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}
.explore-product-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 14px 28px -4px rgba(2, 132, 199, 0.12), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
}
.explore-product-img-box {
  position: relative;
  height: 140px;
  width: 100%;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.explore-product-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.explore-product-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0284c7;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.explore-product-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}
.explore-product-title a {
  color: #0f172a;
  text-decoration: none;
}
.explore-product-footer {
  margin-top: 10px;
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
}
.explore-product-price {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.explore-product-price span {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0284c7;
}
.btn-explore-view {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 8px 14px;
  background: #0284c7;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  width: 100%;
}

/* RESPONSIVE BREAKPOINTS & MOBILE OPTIMIZATIONS */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .hero-title {
    font-size: 1.8rem !important;
  }
  .ps-overview-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .quick-actions-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 110px !important;
    padding-bottom: 32px !important;
  }
  .hero-content {
    align-items: center !important;
    text-align: center !important;
  }
  .hero-eyebrow {
    margin: 0 auto 12px auto !important;
  }
  .hero-title {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }
  .hero-description {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin: 0 auto 18px auto !important;
  }
  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .hero-cta-group > a,
  .hero-cta-group > button {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 18px !important;
    font-size: 0.9rem !important;
  }
  .hero-stats-row {
    justify-content: center !important;
    gap: 20px !important;
    padding-top: 16px !important;
  }
  .stat-value {
    font-size: 1.2rem !important;
  }

  /* Overview & Banners (Mobile Scoped ONLY) */
  .ps-overview-section {
    padding-top: 66px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important;
  }
  .ps-overview-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .ps-banners-col {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    overflow: visible !important;
  }
  .ps-feature-card {
    flex: none !important;
    min-width: 0 !important;
    width: 100% !important;
    border-radius: 12px !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .ps-feature-title {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    padding: 6px 2px !important;
    text-align: center !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }
  .ps-feature-img-wrap {
    height: 180px !important;
    min-height: 180px !important;
    max-height: 220px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    width: 100% !important;
    display: flex !important;
  }
  .ps-feature-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }
  .ps-tiles-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .ps-service-tile {
    padding: 10px 6px !important;
    border-radius: 10px !important;
  }
  .ps-service-tile > div:first-child {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.15rem !important;
    margin-bottom: 6px !important;
  }
  .ps-service-tile > div:last-child {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
  }

  /* Search Overlay Modal Mobile Optimization */
  .header-search-overlay {
    padding-top: 15px !important;
  }
  .header-search-card {
    width: 95% !important;
    max-width: 100% !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
  }
  .header-search-modal-title {
    font-size: 0.9rem !important;
  }
  .header-search-input-wrap input {
    padding: 8px 12px !important;
    font-size: 0.82rem !important;
  }
  .header-search-input-wrap button {
    padding: 8px 12px !important;
    font-size: 0.82rem !important;
  }

  /* Explore Products Swipable Mobile Carousel */
  #explore-products-scroll-container,
  .explore-products-scroll-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding: 4px 2px 10px 2px !important;
  }
  .explore-product-card {
    flex: 0 0 120px !important;
    min-width: 120px !important;
    width: 120px !important;
    max-width: 120px !important;
    scroll-snap-align: start !important;
    padding: 5px 4px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .explore-product-img-box {
    position: relative !important;
    height: 95px !important;
    min-height: 95px !important;
    max-height: 95px !important;
    width: 100% !important;
    background: #f8fafc !important;
    border-radius: 6px !important;
    border: 1px solid #f1f5f9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4px !important;
    margin-bottom: 4px !important;
    overflow: hidden !important;
  }
  .explore-product-img-box img {
    max-height: 90px !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
  .explore-product-cat {
    font-size: 0.62rem !important;
    font-weight: 700 !important;
    color: #0284c7 !important;
    text-transform: uppercase !important;
    margin-bottom: 2px !important;
    line-height: 1.1 !important;
  }
  .explore-product-title {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.18 !important;
    height: 2.3em !important;
    overflow: hidden !important;
  }
  .explore-product-title a {
    color: #0f172a !important;
    text-decoration: none !important;
  }
  .explore-product-footer {
    margin-top: 4px !important;
    padding-top: 4px !important;
    border-top: 1px solid #f1f5f9 !important;
  }
  .explore-product-price {
    margin-bottom: 4px !important;
  }
  .explore-product-price span {
    font-size: 0.74rem !important;
    font-weight: 800 !important;
  }
  .btn-explore-view {
    display: block !important;
    text-align: center !important;
    text-decoration: none !important;
    padding: 3px 2px !important;
    background: #0284c7 !important;
    border-radius: 4px !important;
    color: #ffffff !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    width: 100% !important;
  }
  .card-grid, 
  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
    overflow: visible !important;
    padding: 2px 0 !important;
  }
  .product-card {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 6px 4px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .product-card-img-box {
    height: 70px !important;
    padding: 4px !important;
    margin-bottom: 4px !important;
  }
  .product-card-img-box img {
    max-height: 66px !important;
    object-fit: contain !important;
  }
  .product-card-desc {
    display: none !important;
  }
  .product-card-title {
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    margin: 2px 0 3px 0 !important;
    height: 2.4em !important;
    overflow: hidden !important;
  }
  .product-card-price-box {
    margin-bottom: 4px !important;
  }
  .product-card-price-box span {
    font-size: 0.76rem !important;
  }
  .btn-view-product, .btn-add-cart, .btn-order-now {
    padding: 4px 2px !important;
    font-size: 0.68rem !important;
    border-radius: 6px !important;
  }

  /* Quick Actions & Floating Bar */
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .floating-contact-bar {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    padding: 6px 4px 8px 4px !important;
    background: #ffffff !important;
    border-top: 1px solid #cbd5e1 !important;
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08) !important;
    z-index: 9999 !important;
  }
  .btn-float-action {
    padding: 4px 2px !important;
    font-size: 0.7rem !important;
  }
  .btn-float-action span:first-child {
    font-size: 1.1rem !important;
    margin-bottom: 2px !important;
  }
}

@media (max-width: 480px) {
  #btn-location-select {
    display: none !important;
  }
  #btn-header-quotation {
    padding: 6px 10px !important;
    font-size: 0.78rem !important;
  }
  .ps-tiles-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }
  .ps-service-tile {
    padding: 8px 4px !important;
  }
  .ps-service-tile > div:last-child {
    font-size: 0.74rem !important;
  }
  .location-picker-widget {
    margin-bottom: 10px !important;
  }
  #cart-modal-container > div > div {
    max-width: 100% !important;
  }
  .footer-about-logo {
    height: 32px !important;
  }
}

/* NATIVE FAQ DETAILS & SUMMARY ACCORDION STYLES */
details.faq-card-item > summary::-webkit-details-marker,
details.faq-card-item > summary::marker {
  display: none !important;
  content: "" !important;
}

details.faq-card-item > summary {
  list-style: none !important;
  list-style-type: none !important;
}

/* HORIZONTAL SCROLL ROW FOR MOBILE VIEW */
.mobile-scroll-row {
  display: grid;
  gap: 20px;
  width: 100%;
}

.mobile-scroll-row-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mobile-scroll-row-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 992px) {
  .mobile-scroll-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 14px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .mobile-scroll-row > * {
    flex: 0 0 270px !important;
    min-width: 270px !important;
    scroll-snap-align: start !important;
  }
}

