/* Sunshine Gallery - Cookie Consent Banner */
.sunshine-gallery-consent {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 12px;
  background: rgba(20, 20, 22, 0.95);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
}

.sunshine-gallery-consent--top { top: 0; }
.sunshine-gallery-consent--bottom { bottom: 0; }

.sunshine-gallery-consent__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.sunshine-gallery-consent__message a {
  color: inherit;
  text-decoration: underline;
  margin-left: 8px;
}

.sunshine-gallery-consent__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sunshine-gallery-consent__btn {
  border: 0;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.sunshine-gallery-consent__btn--accept {
  background: #ffffff;
  color: #111;
}

.sunshine-gallery-consent__btn--decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}

.sunshine-gallery-consent--hidden { display: none; }

@media (max-width: 720px) {
  .sunshine-gallery-consent__inner { flex-direction: column; align-items: flex-start; }
}

/* Basic WP-like screen reader text helper (in case the theme doesn't provide it). */
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;}
