.wcc-user-notice--donation {
  position: fixed;
  top: 20px;
  left: 20px;
  right: auto;
  z-index: 999999;
  background: #111;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 320px;
  font-size: 15px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: rgb(48, 138, 150);
}

.wcc-user-notice--donation[aria-hidden="true"] {
  display: none;
}

.wcc-user-notice--donation[aria-hidden="false"] {
  display: flex;
}

.wcc-user-notice--donation:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.wcc-user-notice--donation a {
  color: white !important;
  text-decoration: none !important;
}

.wcc-user-notice--donation .wcc-user-notice__link {
  color: #ffffff;
  text-decoration: none;
  display: block;
  flex: 1;
}

.wcc-user-notice--donation .wcc-user-notice__link strong {
  font-weight: 700;
}

.wcc-user-notice--donation .wcc-user-notice__link:hover {
  text-decoration: none;
}

.wcc-user-notice--donation .wcc-user-notice__close {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.7;
  flex-shrink: 0;
}

.wcc-user-notice--donation .wcc-user-notice__close:hover {
  opacity: 1;
}