/* ============================================================
   FLORA77 - Site Notice (site-notice.css)
   Top banner notice bar
   ============================================================ */

.site-notice {
  background: linear-gradient(135deg, var(--accent, #22c55e), var(--accent-dark, #16a34a));
  color: #fff;
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.site-notice a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.site-notice-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.site-notice-close:hover {
  background: rgba(255,255,255,0.35);
}

.site-notice-icon {
  font-size: 16px;
}
