/* Local CSS overrides — loaded after the generated theme CSS.
   This file is NOT generated by Webcard and will not be overwritten on export.
   Use it for tweaks, corrections, and additions. */

/* ── Cookie Consent Banner ─────────────────────────────────────── */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #1a1a2e;
  color: #f0f0f0;
  box-shadow: 0 -2px 12px rgba(0,0,0,.35);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.ccb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ccb-text {
  flex: 1 1 300px;
  margin: 0;
  color: #d0d0d0;
}

.ccb-link {
  color: #7ab8f5;
  text-decoration: underline;
}

.ccb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ccb-btn {
  padding: 9px 22px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}

.ccb-btn:hover { opacity: .85; }

.ccb-btn--primary {
  background: #007AFF;
  color: #fff;
}

.ccb-btn--secondary {
  background: transparent;
  color: #d0d0d0;
  border: 1px solid #555;
}

@media (max-width: 600px) {
  .ccb-inner { padding: 14px 16px; gap: 12px; }
  .ccb-actions { width: 100%; justify-content: flex-end; }
}

/* ── Injected language switcher (pages without native switcher) ─── */
.lang-injected {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  margin-left: 8px;
}

.lang-injected a {
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  opacity: 0.5;
  transition: opacity .15s;
}

.lang-injected a.active {
  opacity: 1;
}

.lang-injected a:hover {
  opacity: 0.8;
}

.lang-injected a + a::before {
  content: '|';
  margin-right: 6px;
  opacity: 0.4;
  font-weight: 400;
}

