/* Sticky Header styles */
.sticky-header-shrink {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.4s ease-in-out;
}

/* Adjust layout when admin bar is visible */
body.admin-bar .sticky-header-shrink {
  top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
  body.admin-bar .sticky-header-shrink {
    top: 46px;
  }
}

/* Shrunk header state */
.sticky-header-shrink.shrunk {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Reduce size of child elements inside shrunk header */
.sticky-header-shrink.shrunk img {
  max-height: 40px !important;
  transition: all 0.4s ease-in-out;
}
.sticky-header-shrink img {
  transition: all 0.4s ease-in-out;
}
