/* ==========================================================================
   JH WEB SOLUTIONS - MODERN PREMIUM RESPONSIVE HEADER & NAVIGATION
   Design matches: Minimal luxury aesthetic, sleek logo,
   active underline indicator, card dropdowns, WhatsApp pill CTA,
   and fluid off-canvas mobile drawer with smooth accordions.
   ========================================================================== */

/* Root Variables */
:root {
  --jh-header-height: 72px;
  --jh-header-bg: #ffffff;
  --jh-header-border: #eaeaea;
  --jh-header-text: #1f2937;
  --jh-header-text-hover: #000000;
  --jh-header-muted: #71717a;
  --jh-header-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px -1px rgba(0, 0, 0, 0.02);
  --jh-dropdown-bg: #ffffff;
  --jh-dropdown-border: #f0f0f2;
  --jh-dropdown-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  --jh-badge-dark: #0f172a;
}

/* Reset / Neutralize legacy header conflict */
.header-sticky {
  background-color: var(--jh-header-bg) !important;
  box-shadow: var(--jh-header-shadow) !important;
  border-bottom: 1px solid var(--jh-header-border) !important;
  padding: 0 !important;
  margin: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 99999 !important;
  box-sizing: border-box !important;
}

/* Header Container */
.jh-header-bar {
  width: 100%;
  background: var(--jh-header-bg);
  position: relative;
}

.jh-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--jh-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   BRAND LOGO (Left side)
   -------------------------------------------------------------------------- */
.jh-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  outline: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.jh-logo-link:hover {
  opacity: 0.92;
  transform: scale(1.01);
  text-decoration: none !important;
}

/* Official JH Web Solutions Logo Image */
.jh-logo-img {
  height: 48px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

/* Black Rounded Square Badge with "JH" (Fallback/Variant) */
.jh-logo-badge {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #0d0d0d;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.5px;
  line-height: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  user-select: none;
}

/* Text Container */
.jh-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.jh-logo-name {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #0f172a;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.jh-logo-sub {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--jh-header-muted);
  text-transform: uppercase;
  margin-top: 3px;
  padding: 0;
}

/* --------------------------------------------------------------------------
   DESKTOP NAVIGATION (Center)
   -------------------------------------------------------------------------- */
.jh-nav-container {
  display: flex;
  align-items: center;
}

.jh-nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.jh-nav-item {
  position: relative;
  list-style: none !important;
  padding: 0;
  margin: 0;
}

/* Navigation Links */
.jh-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: var(--jh-header-height);
  padding: 0 4px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--jh-header-text);
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.jh-nav-link:hover,
.jh-nav-item:hover > .jh-nav-link {
  color: var(--jh-header-text-hover);
  text-decoration: none !important;
}

/* Active State Underline (as shown in screenshot under App Development) */
.jh-nav-link.active,
.jh-nav-item.is-active > .jh-nav-link {
  color: #000000;
  font-weight: 600;
}

.jh-nav-link.active::after,
.jh-nav-item.is-active > .jh-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  border-radius: 2px 2px 0 0;
}

/* Subtle Animated Underline Indicator on Hover */
.jh-nav-link:not(.active)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: all 0.25s ease;
  transform: translateX(-50%);
}

.jh-nav-item:hover > .jh-nav-link:not(.active)::after {
  width: 100%;
}

/* Chevron Down Caret */
.jh-caret {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.25s ease, stroke 0.2s ease;
  opacity: 0.65;
}

.jh-nav-item:hover > .jh-nav-link .jh-caret {
  transform: rotate(180deg);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   DROPDOWN MENUS (Desktop)
   -------------------------------------------------------------------------- */
.jh-dropdown-pane {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--jh-dropdown-bg);
  border: 1px solid var(--jh-dropdown-border);
  border-radius: 14px;
  box-shadow: var(--jh-dropdown-shadow);
  padding: 12px;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  z-index: 1000;
}

/* Invisible hover bridge to prevent premature closing */
.jh-dropdown-pane::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}

.jh-nav-item:hover > .jh-dropdown-pane,
.jh-nav-item:focus-within > .jh-dropdown-pane {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* 2-Column Wide Dropdown for large service lists */
.jh-dropdown-pane.is-wide {
  min-width: 580px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
}

/* Dropdown Menu Item */
.jh-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none !important;
  color: #1e293b;
  transition: background 0.18s ease, transform 0.18s ease;
}

.jh-dropdown-item:hover {
  background: #f8fafc;
  transform: translateX(3px);
  text-decoration: none !important;
}

/* Dropdown Item Icon Box */
.jh-drop-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: 2px;
}

.jh-dropdown-item:hover .jh-drop-icon {
  background: #0f172a;
  color: #ffffff;
}

/* Dropdown Item Text */
.jh-drop-content {
  display: flex;
  flex-direction: column;
}

.jh-drop-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
  transition: color 0.18s ease;
}

.jh-dropdown-item:hover .jh-drop-title {
  color: #000000;
}

.jh-drop-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #64748b;
  line-height: 1.35;
  margin-top: 2px;
}

/* Dropdown Footer Strip */
.jh-dropdown-footer {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.jh-dropdown-footer a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.jh-dropdown-footer a:hover {
  text-decoration: underline !important;
}

/* --------------------------------------------------------------------------
   RIGHT ACTIONS (CTA Button & Utilities)
   -------------------------------------------------------------------------- */
.jh-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* WhatsApp Primary Pill Button (Exact match to screenshot) */
.jh-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f172a;
  color: #ffffff !important;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.jh-btn-whatsapp:hover {
  background: #000000;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.jh-btn-whatsapp:active {
  transform: translateY(0);
}

/* Diagonal Arrow ↗ */
.jh-arrow-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  transition: transform 0.2s ease;
}

.jh-btn-whatsapp:hover .jh-arrow-icon {
  transform: translate(2px, -2px);
}

/* Utility Links: Cart & Account */
.jh-utility-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.jh-utility-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f8fafc;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  text-decoration: none !important;
  transition: all 0.2s ease;
  position: relative;
}

.jh-utility-btn:hover {
  background: #f1f5f9;
  color: #000000;
  border-color: #cbd5e1;
}

.jh-utility-btn i,
.jh-utility-btn svg {
  font-size: 15px;
}

/* Cart Badge */
.jh-badge-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #0f172a;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  border: 2px solid #ffffff;
}

/* User Account Flyout */
.jh-user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.jh-utility-item:hover .jh-user-dropdown,
.jh-utility-item:focus-within .jh-user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.jh-user-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: #334155;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}

.jh-user-dropdown a:hover {
  background: #f8fafc;
  color: #000000;
}

.jh-user-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 4px 0;
}

/* --------------------------------------------------------------------------
   MOBILE HAMBURGER TOGGLE BUTTON
   -------------------------------------------------------------------------- */
.jh-mobile-toggle {
  display: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  color: #0f172a;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.jh-mobile-toggle:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.jh-hamburger-icon {
  width: 20px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.jh-hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #0f172a;
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

/* Hamburger Active State (Morphs into X) */
.jh-mobile-toggle.is-open .jh-hamburger-icon span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.jh-mobile-toggle.is-open .jh-hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.jh-mobile-toggle.is-open .jh-hamburger-icon span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   MODERN OFF-CANVAS RESPONSIVE DRAWER & BACKDROP
   -------------------------------------------------------------------------- */
/* Dark Backdrop Overlay */
.jh-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999998;
}

.jh-drawer-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Off-Canvas Slide Drawer */
.jh-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  box-shadow: -12px 0 45px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overscroll-behavior: contain;
}

.jh-mobile-drawer.is-active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

/* Drawer Header Bar */
.jh-drawer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
  flex-shrink: 0;
}

.jh-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.jh-drawer-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.jh-drawer-close-btn {
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, transform 0.15s ease;
}

.jh-drawer-close-btn:hover {
  background: #e2e8f0;
  transform: rotate(90deg);
}

/* Quick Action Strip inside Drawer */
.jh-drawer-quick-strip {
  display: flex;
  gap: 8px;
  padding: 12px 18px;
  background: #fafafa;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.jh-drawer-quick-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.jh-quick-wa {
  background: #25d366;
  color: #ffffff !important;
}
.jh-quick-wa:hover {
  background: #20ba5a;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.jh-quick-call {
  background: #0f172a;
  color: #ffffff !important;
}
.jh-quick-call:hover {
  background: #000000;
}

/* Scrollable Drawer Body */
.jh-drawer-scrollable {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 18px 24px 18px;
}

/* Mobile Accordion Nav List */
.jh-mob-nav-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.jh-mob-nav-item {
  border-bottom: 1px solid #f1f5f9;
  list-style: none !important;
}

/* Accordion Header (Interactive Button) */
.jh-mob-nav-header {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.jh-mob-nav-header:hover {
  color: #000000;
}

.jh-mob-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jh-mob-cat-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 13px;
  transition: all 0.2s ease;
}

.jh-mob-nav-item.open .jh-mob-cat-icon {
  background: #0f172a;
  color: #ffffff;
}

.jh-mob-caret {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.2;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.6;
}

.jh-mob-nav-item.open > .jh-mob-nav-header .jh-mob-caret {
  transform: rotate(180deg);
  opacity: 1;
}

/* Accordion Submenu Body */
.jh-mob-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8fafc;
  border-radius: 10px;
  margin: 0;
  padding: 0 6px;
}

.jh-mob-nav-item.open > .jh-mob-accordion-body {
  max-height: 520px;
  padding: 6px;
  margin-bottom: 12px;
}

/* Accordion Sub-Item Links */
.jh-mob-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.jh-mob-sublink-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.jh-mob-sublink-icon {
  font-size: 11px;
  color: #64748b;
  width: 14px;
  text-align: center;
}

.jh-mob-sublink-arrow {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.15s ease, color 0.15s ease;
}

.jh-mob-sublink:hover,
.jh-mob-sublink:active {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transform: translateX(2px);
  text-decoration: none !important;
}

.jh-mob-sublink:hover .jh-mob-sublink-arrow {
  color: #000000;
  transform: translateX(2px);
}

/* Drawer Bottom Actions Area */
.jh-drawer-bottom-card {
  margin-top: 16px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jh-drawer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0f172a;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 9999px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease;
}

.jh-drawer-cta-btn:hover {
  background: #000000;
  color: #ffffff !important;
}

.jh-drawer-auth-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: #64748b;
  padding-top: 4px;
}

.jh-drawer-auth-row a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none !important;
}
.jh-drawer-auth-row a:hover {
  text-decoration: underline !important;
}

.jh-drawer-footer-text {
  text-align: center;
  font-size: 10.5px;
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS (Fluid adaptation across all displays)
   -------------------------------------------------------------------------- */
/* Large Desktop (1201px to 1366px): optimize spacing so items never wrap */
@media (min-width: 1201px) and (max-width: 1366px) {
  .jh-header-inner {
    padding: 0 20px;
    gap: 8px;
  }
  .jh-nav-menu {
    gap: 14px;
  }
  .jh-nav-link {
    font-size: 12.8px;
    padding: 0 2px;
  }
  .jh-btn-whatsapp {
    padding: 9px 16px;
    font-size: 12.8px;
  }
}

/* Medium Screens & Tablets (<= 1200px): Switch to responsive mobile drawer */
@media (max-width: 1200px) {
  .jh-nav-container {
    display: none !important;
  }
  .jh-mobile-toggle {
    display: flex !important;
  }
  .jh-header-actions {
    gap: 10px;
  }
}

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .jh-header-inner {
    padding: 0 20px;
  }
  .jh-btn-whatsapp {
    padding: 8px 16px;
    font-size: 12.5px;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  :root {
    --jh-header-height: 64px;
  }
  .jh-header-inner {
    padding: 0 16px;
    height: 64px;
  }
  .jh-logo-img {
    height: 38px;
    max-width: 135px;
  }
  .jh-btn-whatsapp {
    font-size: 12px;
    padding: 7px 14px;
    gap: 5px;
  }
  .jh-utility-btn {
    width: 36px;
    height: 36px;
  }
  .jh-mobile-toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .jh-hamburger-icon {
    width: 18px;
    height: 13px;
  }
  .jh-mobile-drawer {
    width: 92%;
  }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  .jh-header-inner {
    padding: 0 12px;
  }
  .jh-logo-img {
    height: 34px;
    max-width: 120px;
  }
  .jh-btn-whatsapp span.btn-text-full {
    display: none;
  }
  .jh-btn-whatsapp span.btn-text-short {
    display: inline;
  }
  .jh-btn-whatsapp {
    padding: 6px 11px;
    font-size: 11.5px;
  }
  .jh-utility-btn {
    width: 32px;
    height: 32px;
  }
  .jh-utility-btn i {
    font-size: 13px;
  }
  .jh-badge-count {
    min-width: 15px;
    height: 15px;
    font-size: 9px;
    top: -2px;
    right: -2px;
  }
  .jh-mobile-toggle {
    width: 34px;
    height: 34px;
  }
  .jh-mobile-drawer {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 481px) {
  .jh-btn-whatsapp span.btn-text-short {
    display: none;
  }
}
