#holiday-ribbon {
  position: relative;
  z-index: 1300;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(180,0,0,0.35);
  animation: ribbonIn 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes ribbonIn {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

#holiday-ribbon .stars {
  display: inline-flex;
  gap: 4px;
  opacity: 0.7;
  font-size: 0.65rem;
}

.holiday-ribbon__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}
.holiday-ribbon__close:hover {
  color: #fff;
}
