/* Riggy's Cookie Consent Banner */

#riggys-cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 380px;
  width: calc(100% - 48px);
  background: #061a32;
  border: 1px solid #8cd303;
  border-radius: 8px;
  padding: 20px;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  z-index: 99999;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

#riggys-cookie-banner h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

#riggys-cookie-banner p {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 13px;
}

#riggys-cookie-banner .riggys-consent-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

#riggys-cookie-banner .riggys-btn-accept {
  background: #8cd303;
  color: #061a32;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  padding: 9px 18px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  flex: 1;
}

#riggys-cookie-banner .riggys-btn-accept:hover {
  background: #a0e800;
}

#riggys-cookie-banner .riggys-btn-deny {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 9px 18px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  flex: 1;
}

#riggys-cookie-banner .riggys-btn-deny:hover {
  background: rgba(255,255,255,0.08);
}

#riggys-cookie-banner .riggys-consent-note {
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

/* Persistent preferences link */
#riggys-cookie-prefs {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #061a32;
  border-top: 1px solid #8cd303;
  border-right: 1px solid #8cd303;
  border-radius: 0 6px 0 0;
  padding: 5px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  z-index: 99998;
  font-family: inherit;
  cursor: pointer;
}

#riggys-cookie-prefs:hover {
  color: #8cd303;
}

/* Mobile: full-width, flush to bottom */
@media (max-width: 600px) {
  #riggys-cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  #riggys-cookie-prefs {
    display: none;
  }
}
