/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 16 2025 | 19:47:39 */
/* Bottom golden line + reveal tab */
#gr-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 20px;                     /* full height (hidden via transform) */
  z-index: 2147483647;
}

#gr-bar a {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 20px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font: 600 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #000;
  background: #d4af37;
  border-top: 1px solid #d4af37;
  transform: translateY(calc(100% - 3px));  /* show only 1px line by default */
  transition: transform .2s ease;
  pointer-events: auto;
}

/* Reveal on hover/focus, or when at bottom */
#gr-bar:hover a,
#gr-bar:focus-within a,
html.gr-bottom #gr-bar a {
  transform: translateY(0);
}
