/* Gallery Favorites - Styling (Schritt 10: monochromes Branding statt Orange) */

.gf-heart {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.gf-heart:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.75);
}

.gf-heart svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  transition: fill 0.15s ease, stroke 0.15s ease;
}

/* Aktiver Zustand: Schwarz/Weiss statt Rot, passend zum monochromen Branding */
.gf-heart.gf-active {
  background: #fff;
}
.gf-heart.gf-active svg {
  fill: #111;
  stroke: #111;
}

#thumbnails li {
  position: relative;
}

/* E-Mail-Registrierungs-Overlay */
.gf-email-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gf-email-gate-box {
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  font-family: inherit;
}

.gf-email-gate-box h2 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #111;
}

.gf-email-gate-box p {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
}

.gf-email-gate-box input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 14px;
  box-sizing: border-box;
  margin-bottom: 12px;
}

.gf-email-gate-box button {
  width: 100%;
  padding: 10px 12px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gf-email-gate-box button:hover {
  background: #333;
}

.gf-email-gate-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

/* Marken-Logo im Seitenkopf (Schritt 10) */
.gf-brand-logo {
  display: flex;
  justify-content: center;
  padding: 24px 0 8px;
}

.gf-brand-logo img {
  max-height: 90px;
  width: auto;
}
