.text-banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.text-banner-gold {
  background: linear-gradient(145deg, #f0d87a, #d4af37); /* heller, edler Goldton */
  color: #000; /* schwarze Schrift */
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-block;
}

.copy-code {
  font-weight: bold;
  color: #000; /* schwarze Schrift */
  margin-left: 4px;
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.1); /* leicht dunkler Hintergrund für Kontrast */
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.copy-code:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.wp-block-cover {
    margin-bottom: 0 !important;
}
header.site-header {
    margin-top: 0 !important;
}

/* Standard Desktop: Icons nebeneinander */
.header-icons {
  display: flex;
  gap: 15px; /* Abstand zwischen Icons */
  justify-content: flex-end;
  align-items: center;
}

/* Mobile: 2 Icons pro Zeile */
@media (max-width: 768px) {
  .header-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
    gap: 15px; /* Abstand zwischen Icons */
    justify-items: center; /* Icons mittig in der Spalte */
  }
}

.fancy-font {
  font-family: "Rochester", cursive !important;
}

/* Hintergrund über volle Breite, Inhalt bleibt begrenzt */
.block-breite {
  width: 100vw;             /* voller Bildschirm */
  position: relative;       /* sichert den Block */
  left: 50%;                /* Ausgleich für zentrierte Container */
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #f5f5f5; /* Beispiel Hintergrundfarbe */
}

.fullwidth-bg > .wp-block-column {
  max-width: 1200px;        /* Inhalt begrenzen */
  margin: 0 auto;           /* zentrieren */
}

.is-style-outline:hover {
    color: #ffffff;                  /* Textfarbe wechselt auf Weiß */
}
/* Zeige den Kreis nur, wenn der Benutzer eingeloggt ist */
body.logged-in .wishlist-count {
  display: inline-block;
}

/* Standardmäßig ausblenden */
.wishlist-count {
  display: none;
}

/* (Rest deiner Gestaltung bleibt gleich) */
.wishlist-header-counter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  color: inherit;
}

.wishlist-heart::before {
  content: "\2665";
  font-size: 30px;
  color: #fff;
  display: block;
  line-height: 1;
  text-align: center;
}

body.logged-in .wishlist-count {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -35%);
  background: linear-gradient(145deg, #d4af37, #b8860b);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  min-width: 18px;
  text-align: center;
  line-height: 1;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

