/* ==========================================================================
   HOSPITAL STORE (hospitalstore.com) OFFICIAL REPLICA THEME STYLES
   Signature Colors:
   --hs-primary: #28348a (Deep Royal Indigo)
   --hs-top-bar: #4651a7 (Header Utility Bar)
   --hs-price: #f25529 (Product Price Coral)
   --hs-sale: #ff0000 (Sale Badge)
   --hs-top-selling: #5ca93a (Top Selling Badge)
   ========================================================================== */

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

:root {
  --hs-primary: #28348a;
  --hs-primary-dark: #1e276b;
  --hs-primary-light: #3847b2;
  --hs-top-bar: #4651a7;
  --hs-price: #f25529;
  --hs-sale: #ff0000;
  --hs-top-selling: #5ca93a;
  --hs-bg: #f8f9fa;
  --hs-surface: #ffffff;
  --hs-border: #e2e5ec;
  --hs-border-light: #f0f2f6;
  --hs-text-dark: #1d2538;
  --hs-text-muted: #6b7280;
  --hs-text-light: #9ca3af;
  --hs-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --hs-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --hs-shadow-lg: 0 10px 25px rgba(40, 52, 138, 0.12);
  --hs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --hs-radius: 8px;
}

body.theme-hospitalstore {
  font-family: var(--hs-font);
  background-color: var(--hs-bg);
  color: var(--hs-text-dark);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body.theme-hospitalstore * {
  box-sizing: border-box;
}

body.theme-hospitalstore a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

body.theme-hospitalstore a:hover {
  color: var(--hs-primary);
}

/* ==========================================================================
   1. TOP NOTIFICATION & UTILITY BAR (#4651a7)
   ========================================================================== */
.hs-top-bar {
  background: linear-gradient(90deg, #4651a7 0%, #3a4494 100%);
  color: #ffffff;
  font-size: 12px;
  line-height: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1000;
}

.hs-top-bar .hs-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hs-top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hs-top-bar-left .hs-top-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.hs-top-bar-left .hs-top-msg i {
  color: #ffde59;
}

.hs-top-bar-left .hs-top-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 10px;
  border-radius: 20px;
}

.hs-top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hs-top-bar-right a {
  color: #ffffff;
  opacity: 0.9;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hs-top-bar-right a:hover {
  opacity: 1;
  color: #ffde59;
}

.hs-top-bar-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.hs-currency-picker {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 10px;
  border-radius: 4px;
}

/* ==========================================================================
   2. MAIN HEADER BAR
   ========================================================================== */
.hs-header-main {
  background: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid var(--hs-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 999;
}

.hs-header-main .hs-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.hs-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hs-logo-wrap img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hs-logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hs-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--hs-primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.hs-logo-text-box h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--hs-primary);
  line-height: 1;
}

.hs-logo-text-box span {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #f25529;
  font-weight: 700;
  text-transform: uppercase;
}

/* Category Button + Live Search Box */
.hs-search-container {
  flex: 1;
  max-width: 720px;
  display: flex;
  align-items: center;
  position: relative;
}

.hs-cat-toggle-btn {
  height: 44px;
  padding: 0 16px;
  background: #f4f6fa;
  border: 2px solid var(--hs-primary);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: var(--hs-primary);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.hs-cat-toggle-btn:hover {
  background: #e8ecf6;
}

.hs-search-form {
  display: flex;
  width: 100%;
  position: relative;
}

.hs-search-input {
  width: 100%;
  height: 44px;
  padding: 0 45px 0 16px;
  border: 2px solid var(--hs-primary);
  border-radius: 0;
  font-size: 14px;
  outline: none;
  font-family: var(--hs-font);
  background: #ffffff;
  transition: all 0.2s ease;
}

.hs-search-input:focus {
  background: #ffffff;
  border-color: var(--hs-primary-dark);
}

.hs-search-submit-btn {
  height: 44px;
  width: 52px;
  background: var(--hs-primary);
  border: none;
  color: #ffffff;
  font-size: 16px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hs-search-submit-btn:hover {
  background: var(--hs-primary-dark);
}

/* Right Header Actions */
.hs-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.hs-action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.hs-action-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4f6fa;
  color: var(--hs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  position: relative;
  transition: all 0.2s;
}

.hs-action-item:hover .hs-action-icon-box {
  background: var(--hs-primary);
  color: #ffffff;
}

.hs-badge-pill {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--hs-price);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.hs-action-text {
  display: flex;
  flex-direction: column;
}

.hs-action-label {
  font-size: 11px;
  color: var(--hs-text-muted);
  line-height: 1.2;
}

.hs-action-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--hs-text-dark);
  line-height: 1.3;
}

/* ==========================================================================
   3. MEGA MENU NAVIGATION BAR (CS-Cart Unitheme2 Style)
   ========================================================================== */
.hs-nav-bar {
  background: #ffffff;
  border-bottom: 2px solid var(--hs-border);
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.hs-nav-bar .hs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hs-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.hs-nav-list::-webkit-scrollbar {
  display: none;
}

.hs-nav-item {
  position: relative;
}

.hs-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #2b334a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.hs-nav-link:hover,
.hs-nav-item:hover .hs-nav-link {
  color: var(--hs-primary);
  border-bottom-color: var(--hs-primary);
  background: #f7f9fd;
}

/* Category Badges */
.hs-nav-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.hs-nav-badge.sale {
  background-color: var(--hs-sale);
}

.hs-nav-badge.top-selling {
  background-color: var(--hs-top-selling);
}

/* Mega Dropdown Menu */
.hs-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 880px;
  background: #ffffff;
  border: 1px solid var(--hs-border);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--hs-shadow-lg);
  padding: 24px;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  z-index: 1050;
  animation: hsFadeIn 0.2s ease;
}

.hs-nav-item:hover .hs-mega-dropdown {
  display: grid;
}

@keyframes hsFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hs-mega-col h4 {
  margin: 0 0 12px 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--hs-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--hs-border);
  padding-bottom: 6px;
}

.hs-mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-mega-col li {
  margin-bottom: 8px;
}

.hs-mega-col a {
  font-size: 12.5px;
  color: #4b5563;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.hs-mega-col a:hover {
  color: var(--hs-primary);
  font-weight: 700;
  padding-left: 3px;
}

/* ==========================================================================
   4. HERO BANNER SECTION (Exact Hospital Store Banners)
   ========================================================================== */
.hs-hero-section {
  padding: 20px 0 30px;
}

.hs-hero-section .hs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hs-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

/* Main Banner Carousel Box */
.hs-hero-main-carousel {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--hs-shadow-sm);
  position: relative;
  height: 380px;
}

.hs-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 40px 50px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.hs-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hs-slide-content {
  max-width: 50%;
  z-index: 2;
}

.hs-slide-badge {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.hs-slide-title {
  font-size: 32px;
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

.hs-slide-subtitle {
  font-size: 20px;
  font-weight: 800;
  color: var(--hs-primary);
  margin-bottom: 8px;
}

.hs-slide-desc {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hs-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: #ffffff !important;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
}

.hs-slide-btn:hover {
  background: #d60000;
  transform: translateY(-2px);
}

.hs-slide-img {
  position: absolute;
  right: 30px;
  bottom: 20px;
  top: 20px;
  max-height: 340px;
  max-width: 48%;
  object-fit: contain;
  z-index: 1;
}

/* Slider Controls */
.hs-slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--hs-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #111;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.hs-slider-nav-btn:hover {
  background: var(--hs-primary);
  color: #fff;
}

.hs-slider-prev { left: 15px; }
.hs-slider-next { right: 15px; }

/* Side Banner Tiles */
.hs-hero-side-banners {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 380px;
}

.hs-side-banner {
  flex: 1;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 25px;
  box-shadow: var(--hs-shadow-sm);
  border: 1px solid var(--hs-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hs-side-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--hs-shadow-md);
}

.hs-side-banner-content {
  flex: 1;
  z-index: 2;
}

.hs-side-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--hs-sale);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hs-side-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 0 0 6px 0;
}

.hs-side-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--hs-primary);
}

.hs-side-banner-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-left: 10px;
}

/* ==========================================================================
   5. VALUE PROPOSITIONS STRIP (4 Pillars)
   ========================================================================== */
.hs-features-strip {
  margin: 10px 0 35px;
}

.hs-features-strip .hs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hs-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow-sm);
}

.hs-feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hs-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #eef2fb;
  color: var(--hs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hs-feature-info h4 {
  margin: 0 0 2px 0;
  font-size: 13.5px;
  font-weight: 700;
  color: #1f2937;
}

.hs-feature-info p {
  margin: 0;
  font-size: 12px;
  color: var(--hs-text-muted);
}

/* ==========================================================================
   6. PRODUCT RAILS & CARDS (Exact Hospital Store .ut2-gl__item)
   ========================================================================== */
.hs-product-section {
  margin-bottom: 40px;
}

.hs-product-section .hs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hs-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 12px;
}

.hs-section-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hs-section-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0;
  position: relative;
}

.hs-section-title::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--hs-primary);
  border-radius: 2px;
}

.hs-section-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hs-view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--hs-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hs-view-all-link:hover {
  text-decoration: underline;
}

/* Product Grid */
.hs-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 16px;
}

/* Single Product Card */
.hs-product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  padding: 14px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.hs-product-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Discount Badge */
.hs-prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--hs-sale);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

/* Wishlist Heart */
.hs-prod-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: #f4f6fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #9ca3af;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
}

.hs-prod-wishlist:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* Image */
.hs-prod-img-box {
  width: 100%;
  height: 180px;
  margin: 10px 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hs-product-card:hover .hs-prod-img {
  transform: scale(1.05);
}

/* Brand & Title */
.hs-prod-brand {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hs-prod-title {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.35;
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}

.hs-prod-title a:hover {
  color: var(--hs-primary);
}

/* Stars Rating */
.hs-prod-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #f59e0b;
  margin-bottom: 8px;
}

.hs-prod-rating span {
  color: #9ca3af;
  font-size: 11px;
  margin-left: 2px;
}

/* Price Box */
.hs-prod-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 12px;
}

.hs-prod-selling-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--hs-price); /* Signature Coral #f25529 */
}

.hs-prod-mrp {
  font-size: 12px;
  color: #9ca3af;
  text-decoration: line-through;
}

.hs-prod-discount-text {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
}

/* Add To Cart Button (#28348a) */
.hs-add-cart-btn {
  width: 100%;
  height: 36px;
  background: var(--hs-primary);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.1s;
}

.hs-add-cart-btn:hover {
  background: var(--hs-primary-dark);
}

.hs-add-cart-btn:active {
  transform: scale(0.98);
}

/* ==========================================================================
   7. PROMOTIONAL BANNERS & CATEGORY TILES
   ========================================================================== */
.hs-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.hs-promo-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow-sm);
  display: flex;
  align-items: center;
  padding: 24px 30px;
  transition: transform 0.2s;
}

.hs-promo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--hs-shadow-md);
}

.hs-promo-text {
  flex: 1;
}

.hs-promo-text h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px 0;
}

.hs-promo-text p {
  font-size: 13px;
  color: var(--hs-text-muted);
  margin: 0 0 14px 0;
}

.hs-promo-btn {
  display: inline-block;
  background: var(--hs-primary);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  text-transform: uppercase;
}

.hs-promo-img {
  width: 160px;
  height: 120px;
  object-fit: contain;
}

/* Quick Category Grid Icons */
.hs-cat-icon-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}

.hs-cat-icon-card {
  background: #ffffff;
  border: 1px solid var(--hs-border);
  border-radius: 8px;
  padding: 16px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.hs-cat-icon-card:hover {
  border-color: var(--hs-primary);
  transform: translateY(-3px);
  box-shadow: var(--hs-shadow-sm);
}

.hs-cat-icon-card i {
  font-size: 26px;
  color: var(--hs-primary);
}

.hs-cat-icon-card span {
  font-size: 11.5px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
}

/* ==========================================================================
   8. BRAND CAROUSEL
   ========================================================================== */
.hs-brands-section {
  background: #ffffff;
  padding: 30px 0;
  border-top: 1px solid var(--hs-border);
  border-bottom: 1px solid var(--hs-border);
  margin-bottom: 35px;
}

.hs-brands-section .hs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hs-brands-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.hs-brand-badge {
  font-family: var(--hs-font);
  font-size: 15px;
  font-weight: 900;
  color: #64748b;
  border: 1px solid #e2e8f0;
  padding: 10px 22px;
  border-radius: 6px;
  letter-spacing: 1px;
  background: #f8fafc;
  transition: all 0.2s;
}

.hs-brand-badge:hover {
  color: var(--hs-primary);
  border-color: var(--hs-primary);
  background: #ffffff;
  transform: scale(1.05);
}

/* ==========================================================================
   9. NEWSLETTER / STAY CONNECTED BAR
   ========================================================================== */
.hs-newsletter {
  background: linear-gradient(135deg, #28348a 0%, #1e276b 100%);
  color: #ffffff;
  padding: 35px 0;
  margin-bottom: 0;
}

.hs-newsletter .hs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hs-news-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hs-news-icon {
  font-size: 38px;
  color: #ffde59;
}

.hs-news-title h3 {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 800;
}

.hs-news-title p {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
}

.hs-news-form {
  display: flex;
  max-width: 500px;
  width: 100%;
}

.hs-news-input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
  font-size: 13.5px;
  font-family: var(--hs-font);
}

.hs-news-btn {
  height: 44px;
  padding: 0 24px;
  background: #f25529;
  color: #ffffff;
  border: none;
  border-radius: 0 6px 6px 0;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}

.hs-news-btn:hover {
  background: #d63d12;
}

/* ==========================================================================
   10. RICH 4-COLUMN FOOTER
   ========================================================================== */
.hs-footer {
  background: #19204e;
  color: #cbd5e1;
  padding: 50px 0 25px;
  font-size: 13px;
}

.hs-footer .hs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hs-footer-col h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 18px 0;
  position: relative;
  padding-bottom: 8px;
}

.hs-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #f25529;
}

.hs-footer-col p {
  line-height: 1.6;
  margin-bottom: 14px;
}

.hs-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-footer-col li {
  margin-bottom: 8px;
}

.hs-footer-col a {
  color: #cbd5e1;
  transition: color 0.15s;
}

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

.hs-footer-cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.hs-footer-cert-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
}

.hs-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hs-payment-pill {
  background: #ffffff;
  color: #111827;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
}

/* Footer Bottom */
.hs-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
  color: #94a3b8;
}

/* ==========================================================================
   11. FLOATING WHATSAPP & SUPPORT WIDGET
   ========================================================================== */
.hs-floating-support {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10000;
}

.hs-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hs-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.hs-float-wa {
  background-color: #25d366;
}

.hs-float-inquiry {
  background-color: var(--hs-primary);
}

/* ==========================================================================
   12. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
  .hs-hero-grid {
    grid-template-columns: 1fr;
  }
  .hs-hero-side-banners {
    flex-direction: row;
    height: auto;
  }
  .hs-mega-dropdown {
    width: 700px;
    grid-template-columns: repeat(2, 1fr);
  }
  .hs-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hs-top-bar {
    display: none;
  }
  .hs-header-main .hs-container {
    flex-wrap: wrap;
  }
  .hs-search-container {
    order: 3;
    max-width: 100%;
    margin-top: 10px;
  }
  .hs-cat-toggle-btn {
    display: none;
  }
  .hs-search-input {
    border-radius: 6px 0 0 6px;
  }
  .hs-hero-side-banners {
    flex-direction: column;
  }
  .hs-features-grid {
    grid-template-columns: 1fr;
  }
  .hs-cat-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hs-promo-grid {
    grid-template-columns: 1fr;
  }
  .hs-newsletter .hs-container {
    flex-direction: column;
    text-align: center;
  }
  .hs-news-left {
    flex-direction: column;
  }
  .hs-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   13. PRODUCTS CATALOG & INNER PAGES ENHANCEMENTS
   ========================================================================== */
body.theme-hospitalstore .prd {
  background: #ffffff;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  transition: all 0.25s ease;
  overflow: hidden;
}

body.theme-hospitalstore .prd:hover {
  border-color: #cbd5e1;
  box-shadow: var(--hs-shadow-md);
  transform: translateY(-3px);
}

body.theme-hospitalstore .prd-title a {
  color: #1f2937;
  font-weight: 700;
}

body.theme-hospitalstore .prd-title a:hover {
  color: var(--hs-primary);
}

body.theme-hospitalstore .column-filters .side-block {
  background: #ffffff;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: var(--hs-shadow-sm);
}

body.theme-hospitalstore .side-block-title {
  color: var(--hs-primary);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--hs-border);
  padding-bottom: 8px;
  margin-bottom: 15px;
}

body.theme-hospitalstore .category-link.active {
  color: var(--hs-primary);
  font-weight: 800;
}

body.theme-hospitalstore .breadcrumbs-wrap {
  background: #ffffff;
  border-bottom: 1px solid var(--hs-border);
  padding: 12px 0;
  font-size: 12.5px;
}

body.theme-hospitalstore .breadcrumbs a {
  color: var(--hs-primary);
  font-weight: 600;
}

/* ==========================================================================
   INQUIRE NOW & WHATSAPP BUTTONS (Replacing Add-to-Cart)
   ========================================================================== */
.hs-card-actions {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
}

.hs-inquire-btn {
  flex: 1;
  height: 38px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

.hs-inquire-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

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

.hs-inquire-wa-btn {
  width: 38px;
  height: 38px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
}

.hs-inquire-wa-btn:hover {
  background: #1eb954;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);
}

.hs-header-quote-btn {
  background: linear-gradient(135deg, #f25529 0%, #e04419 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 8px rgba(242, 85, 41, 0.25);
  transition: all 0.2s ease;
}

.hs-header-quote-btn:hover {
  background: linear-gradient(135deg, #e04419 0%, #c83812 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(242, 85, 41, 0.35);
}

/* ==========================================================================
   ENTERPRISE MEDICAL DISTRIBUTOR FOOTER (Modern, Bespoke Look & Feel)
   ========================================================================== */
.ent-footer {
  background: #080e1a;
  color: #cbd5e1;
  border-top: 1px solid #1e293b;
  font-family: 'DM Sans', var(--font-dm-sans, sans-serif);
  padding: 60px 0 0;
  position: relative;
}

.ent-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.ent-footer-col h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.ent-footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
}

.ent-footer-brand-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: -0.3px;
  display: block;
}

.ent-footer-brand-sub {
  font-size: 11px;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.ent-footer-about {
  font-size: 13.5px;
  line-height: 1.7;
  color: #94a3b8;
  margin: 14px 0 18px;
}

.ent-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.ent-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.ent-contact-item i {
  color: #38bdf8;
  margin-top: 3px;
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

.ent-contact-item a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.ent-contact-item a:hover {
  color: #38bdf8;
}

.ent-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ent-cert-badge {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid #334155;
  color: #e2e8f0;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.ent-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ent-footer-links li {
  margin-bottom: 10px;
}

.ent-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13.5px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ent-footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.ent-quote-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 18px;
}

.ent-quote-card p {
  font-size: 12.5px;
  color: #94a3b8;
  margin: 0 0 12px;
  line-height: 1.5;
}

.ent-footer-btn-quote {
  width: 100%;
  height: 40px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.ent-footer-btn-quote:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.ent-footer-btn-wa {
  width: 100%;
  height: 40px;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

.ent-footer-btn-wa:hover {
  background: #1eb954;
  transform: translateY(-1px);
}

.ent-social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.ent-social-btn {
  width: 36px;
  height: 36px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 50%;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.ent-social-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

.ent-footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 22px 0;
  font-size: 12.5px;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Pre-Footer Enterprise CTA Banner */
.ent-cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border-top: 1px solid #1e293b;
  padding: 44px 0;
  color: #ffffff;
}

.ent-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.ent-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 680px;
}

.ent-cta-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #38bdf8;
  flex-shrink: 0;
}

.ent-cta-text h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.ent-cta-text p {
  margin: 0;
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.5;
}

.ent-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ent-cta-btn-primary {
  background: #f25529;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 13.5px;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(242, 85, 41, 0.35);
}

.ent-cta-btn-primary:hover {
  background: #e04419;
  transform: translateY(-1px);
}

.ent-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.ent-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .ent-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

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

/* ==========================================================================
   CATEGORY DROPDOWN & LIVE SEARCH AUTOCOMPLETE
   ========================================================================== */
.hs-cat-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 320px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  z-index: 1050;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: hsFadeSlideDown 0.18s ease-out;
}

.hs-cat-dropdown.open {
  display: flex !important;
}

@keyframes hsFadeSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hs-cat-dropdown-header {
  padding: 10px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
}

.hs-cat-all-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
}
.hs-cat-all-link:hover {
  text-decoration: underline;
}

.hs-cat-dropdown-list {
  max-height: 380px;
  overflow-y: auto;
  padding: 6px 0;
}

.hs-cat-dropdown-list::-webkit-scrollbar {
  width: 5px;
}
.hs-cat-dropdown-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.hs-cat-option {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  gap: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
  position: relative;
}

.hs-cat-option:hover {
  background: #f1f5f9;
}

.hs-cat-option.selected {
  background: #eff6ff;
  border-left: 3px solid #2563eb;
}

.hs-cat-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.hs-cat-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hs-cat-hint {
  font-size: 11px;
  color: #94a3b8;
}

.hs-cat-badge {
  background: #e2e8f0;
  color: #475569;
  font-size: 10px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 10px;
}

.hs-cat-direct-go {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 11px;
  transition: all 0.15s;
  text-decoration: none;
}
.hs-cat-direct-go:hover {
  background: #2563eb;
  color: #ffffff;
}

.hs-subcat-list {
  padding-left: 28px;
  background: #fafafa;
  border-left: 2px solid #e2e8f0;
  margin-left: 14px;
  margin-bottom: 4px;
}

.hs-subcat-option {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  gap: 8px;
  cursor: pointer;
  font-size: 12.5px;
  color: #475569;
  transition: all 0.15s;
}

.hs-subcat-option:hover {
  color: #1e40af;
  background: #f1f5f9;
}

.hs-subcat-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* LIVE SEARCH SUGGESTIONS */
.hs-search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #cbd5e1;
  border-top: none;
  z-index: 1040;
  max-height: 420px;
  overflow-y: auto;
  animation: hsFadeSlideDown 0.15s ease-out;
}

.hs-suggestion-section-title {
  padding: 8px 14px 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: #f8fafc;
}

.hs-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}

.hs-suggestion-item:hover {
  background: #f8fafc;
  text-decoration: none;
}

.hs-suggestion-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #f1f5f9;
  object-fit: cover;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #64748b;
}

.hs-suggestion-body {
  flex: 1;
  min-width: 0;
}

.hs-suggestion-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.hs-suggestion-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #64748b;
}

.hs-suggestion-cat-tag {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 10px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
}

.hs-suggestion-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  text-decoration: none;
  color: #1e293b;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #f1f5f9;
}
.hs-suggestion-cat-link:hover {
  background: #eff6ff;
  color: #2563eb;
  text-decoration: none;
}

.hs-suggestion-footer {
  padding: 10px 14px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  cursor: pointer;
}
.hs-suggestion-footer:hover {
  background: #e2e8f0;
}

/* ==========================================================================
   COMPACT & MODERN MODALS (Product Inquiry & Get Quote)
   ========================================================================== */
.compact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding: 15px;
}

.compact-modal.open {
  opacity: 1 !important;
  visibility: visible !important;
}

.compact-modal .modal-dialog {
  width: 100%;
  max-width: 480px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.45);
  border: none;
  background: #ffffff;
  transform: scale(0.96) translateY(-8px);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.compact-modal.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.compact-modal .modal-content {
  padding: 0 !important;
  max-height: none !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.compact-modal-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  padding: 14px 20px;
  color: #ffffff;
  position: relative;
}

.compact-modal-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #93c5fd;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}

.compact-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.compact-modal-subtitle {
  margin: 3px 0 0 0;
  font-size: 11.5px;
  color: #e0e7ff;
  opacity: 0.92;
}

.compact-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.15s;
}

.compact-modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.compact-modal-body {
  padding: 16px 20px 18px;
}

.compact-item-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.compact-item-pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.compact-item-pill-sub {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #2563eb;
  display: block;
  line-height: 1.1;
  margin-bottom: 1px;
}

.compact-item-pill-text {
  font-size: 13px;
  font-weight: 800;
  color: #1e3a8a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.compact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.compact-form-group {
  display: flex;
  flex-direction: column;
}

.compact-label {
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 3px;
}

.compact-input {
  height: 36px;
  padding: 0 10px;
  font-size: 12.5px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  background: #ffffff;
  color: #1e293b;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.compact-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.compact-textarea {
  padding: 8px 10px;
  font-size: 12.5px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  background: #ffffff;
  color: #1e293b;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 48px;
  height: 48px;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.compact-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.compact-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.compact-btn-submit {
  flex: 1;
  height: 38px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s;
}

.compact-btn-submit:hover {
  background: #1d4ed8;
}

.compact-btn-whatsapp {
  height: 38px;
  padding: 0 14px;
  background: #25d366;
  color: #ffffff;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s;
}

.compact-btn-whatsapp:hover {
  background: #20ba5a;
  color: #ffffff;
  text-decoration: none;
}

.compact-success-alert {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

