/* ── Footer ── */
.site-footer {
  border-top: 1px solid #e8e8e8;
  padding: 1rem;
  margin-top: 2rem;
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.footer-nav a {
  font-size: 0.8rem;
  color: #999;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
  color: #666;
}

/* ── Cookie Banner ── */
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  z-index: 200;
  padding: 1rem 1rem 1.25rem;
  border-top: 1px solid #e8e8e8;
}

.cookie-banner-inner {
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .cookie-banner {
    /* Overlay the full screen */
    inset: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-top: none;
    box-shadow: none;
    padding: 1.5rem;
  }

  .cookie-banner-inner {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 360px;
  }
}

.cookie-banner-text {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.cookie-banner-text a {
  color: #A953F6;
  text-decoration: none;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}


.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.cookie-btn--accept {
  padding: 0.6rem 1.25rem;
  background: #A953F6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.cookie-btn--accept:hover {
  background: #8a3dd4;
}

.cookie-btn--details {
  padding: 0.6rem 1rem;
  background: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  color: #666;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.cookie-btn--details:hover {
  border-color: #aaa;
  color: #333;
}

/* ── Impressum page ── */
.impressum-section {
  margin-bottom: 1.5rem;
}

.impressum-section h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin: 0 0 0.4rem;
}

.impressum-section p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 0.25rem;
}

.impressum-section a {
  color: #A953F6;
  text-decoration: none;
}

.impressum-section a:hover {
  text-decoration: underline;
}

.impressum-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 1.25rem 0;
}

.impressum-external-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #A953F6;
  text-decoration: none;
}

.impressum-external-link:hover {
  text-decoration: underline;
}
