.beautissimo-announcement-bar {
  background: linear-gradient(90deg, #6a397b 0%, #a35c9c 50%, #6a397b 100%);
  background-size: 200% 100%;
  animation: beautissimo-shimmer 4s ease-in-out infinite;
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13.5px;
  font-family: inherit;
  line-height: 1.5;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1000;
}

@keyframes beautissimo-shimmer {
  0%   { background-position: 200% center; }
  50%  { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.beautissimo-announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  max-width: 1200px;
  margin: 0 auto;
}

.beautissimo-announcement-bar__text {
  color: #fff;
  margin: 0;
}

.beautissimo-announcement-bar__link {
  color: #f2d8ef;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
  transition: color 0.2s;
}

.beautissimo-announcement-bar__link:hover {
  color: #fff;
  text-decoration-thickness: 2px;
}

@media (max-width: 600px) {
  .beautissimo-announcement-bar {
    font-size: 12px;
    padding: 8px 12px;
  }
}
