/* Overlay Hintergrund */
.twinkling-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  z-index: 10000;
  font-family: 'Segoe UI', sans-serif;
  overflow-y: auto;
}

/* Panel innen */
.twinkling-panel {
  background: #fffaf5;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #f9d9d9;
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-height: 92dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Close Button */
.twinkling-close-btn {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #c88;
  transition: color 0.2s;
}
.twinkling-close-btn:hover {
  color: #a66;
}

/* Kategorien */
.twinkling-col strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #b97a57;
  font-weight: bold;
}

.twinkling-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.twinkling-col li {
  margin-bottom: 0.3rem;
}

.twinkling-col a {
  text-decoration: none;
  color: #444;
  transition: all 0.2s;
  padding: 2px 4px;
  border-radius: 4px;
}

.twinkling-col a:hover {
  color: #b97a57;
  background: #fceaea;
}

@media (max-width: 768px) {
  .twinkling-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
/* Kundenkonto Button Farbgestaltung */
.account-button, #account-btn {
  background: #E45D98 !important; /* kräftiges Pink */
  color: #fff !important;          /* weißer Text */
  border: 2px solid #fff !important;
  border-radius: 30px;
  padding: 0.8rem 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background 0.2s, transform 0.1s;
}

.account-button:hover, #account-btn:hover {
  background: #c64b7f !important;
  transform: scale(1.05);
}

