/* Sticky header wrapper covers full width */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #F5F5F5;
  z-index: 1000; /* above regular header */
  transform: translateY(-110%);
  transition: transform 0.25s ease;
}

.sticky-header.is-visible {
  transform: translateY(0);
}

/* Inner container keeps the same content width and paddings as new header */
.sticky-header .sticky-inner {
  margin-left: 100px;
  margin-right: 100px;
  border-radius: 0 0 15px 15px;
  padding-top: 22px;
  padding-right: clamp(20px, calc(1.61463vw + 4.000px), 35px);
  padding-bottom: 22px;
  padding-left: clamp(20px, calc(1.61463vw + 4.000px), 35px);
}

/* Reuse header container layout inside sticky */
.sticky-header .sticky-inner .header-container-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Breakpoints to mirror header margins */
@media (max-width: 1400px) {
  .sticky-header .sticky-inner {
    margin-left: 70px;
    margin-right: 70px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .sticky-header {
    z-index: 1000;
  }
}

@media (max-width: 575px) {
  .sticky-header .sticky-inner {
    margin-left: 32px;
    margin-right: 32px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0 0 15px 15px;
  }
}

