@charset "UTF-8";

.pd-sticky-header {
  position: fixed;
  top: 0;
	width: 100%;

  max-width: 1600px;
  background: white;
  
  opacity: 0;
  transform: translateY(-80px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; /* Prevent hover when hidden */
}

.pd-sticky-header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
