.holiday-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  /* Тёмно-бордовый цвет в тематике 9 мая */
  background: #c24a5b;
  color: white;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}
.holiday-bar.hidden {
  display: none;
}
.holiday-bar-content {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  user-select: none;
  padding-right: 50px;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.holiday-bar-close {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  background: none;
  border: none;
  color: #ffffff !important;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  font-weight: bold;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  z-index: 10001;
}
.holiday-bar-close:hover {
  opacity: 1;
}
.holiday-bar-close:active {
  transform: scale(0.9);
}
/* Отступ для контента страницы, чтобы он не был под плашкой */
body.has-holiday-bar {
  padding-top: 50px;
}
/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .holiday-bar {
    padding: 10px 15px;
    font-size: 14px;
  }

  .holiday-bar-content {
    font-size: 14px;
    padding-right: 40px;
  }

  .holiday-bar-close {
    right: 10px;
    font-size: 24px;
    width: 26px;
    color: #ffffff !important;
  }

  body.has-holiday-bar {
    padding-top: 45px;
  }
}