/* Header Component — Sticky header with blur backdrop, layout, and responsive behavior */

.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(18px);
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-bar .site-header {
  top: 32px !important;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px !important;
  }
}

/* Header Inner Container */
.site-main-header-wrap {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .site-main-header-wrap {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Responsive: Mobile */
@media (max-width: 767px) {
  .site-main-header-wrap {
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
  }
}
