body.holiday-on .header_section {
  position: relative;
}

.holiday-garland {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 50;
}

body.holiday-on .header_top {
  padding-top: 30px;
  transition: padding 0.3s ease;
}

body.holiday-on .header_top .contact_link-container {
  padding-top: 4px;
}

body.holiday-on .holiday-garland {
  opacity: 1;
  transform: translateY(0);
}

.holiday-garland::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  height: 3px;
  background: linear-gradient(90deg, #3c2416, #6a3a1f, #3c2416);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.holiday-garland::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  height: 26px;
  background-repeat: repeat-x;
  background-size: 96px 26px;
  background-image:
    radial-gradient(circle at 12px 14px, rgba(255, 216, 140, 0.95) 0 5px, transparent 7px),
    radial-gradient(circle at 40px 10px, rgba(255, 120, 96, 0.9) 0 5px, transparent 7px),
    radial-gradient(circle at 70px 14px, rgba(140, 220, 255, 0.9) 0 5px, transparent 7px),
    radial-gradient(circle at 90px 10px, rgba(180, 255, 160, 0.9) 0 4px, transparent 6px);
  filter: drop-shadow(0 0 6px rgba(255, 210, 140, 0.35));
  animation: holiday-flicker 3.6s ease-in-out infinite;
}

@keyframes holiday-flicker {
  0%,
  100% {
    opacity: 0.9;
    filter: drop-shadow(0 0 5px rgba(255, 210, 140, 0.35));
  }
  45% {
    opacity: 0.75;
    filter: drop-shadow(0 0 3px rgba(255, 190, 120, 0.2));
  }
  70% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 230, 160, 0.45));
  }
}

@media (max-width: 768px) {
  .holiday-garland {
    height: 26px;
  }
  body.holiday-on .header_top {
    padding-top: 34px;
  }
  .holiday-garland::before {
    top: 12px;
  }
  .holiday-garland::after {
    height: 22px;
    background-size: 84px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .holiday-garland::after {
    animation: none;
  }
}
