/* Full-width bottom cookie bar — site temasına uyumlu */
#cehreConsentBanner {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

#cehreConsentBanner[hidden] {
  display: none !important;
}

.cehre-consent-panel {
  pointer-events: auto;
  width: 100%;
  margin: 0;
  padding: 14px 0;
  border-radius: 0;
  background: rgba(12, 18, 20, 0.96);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text, #e8eef0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.28);
}

html[data-theme="light"] .cehre-consent-panel {
  background: rgba(255, 255, 255, 0.96);
  border-top-color: rgba(20, 40, 38, 0.1);
  box-shadow: 0 -8px 28px rgba(20, 40, 38, 0.1);
  color: var(--text, #142826);
}

.cehre-consent-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.cehre-consent-panel p {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted, #8a9a9e);
}

html[data-theme="light"] .cehre-consent-panel p {
  color: var(--text-muted, #5a6a68);
}

.cehre-consent-panel p strong {
  color: var(--text, #e8eef0);
  font-weight: 600;
}

html[data-theme="light"] .cehre-consent-panel p strong {
  color: var(--text, #142826);
}

.cehre-consent-panel a {
  color: var(--accent-light, #6bc4b6);
  text-decoration: none;
}

.cehre-consent-panel a:hover {
  text-decoration: underline;
}

.cehre-consent-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  gap: 8px;
}

.cehre-consent-actions button {
  cursor: pointer;
  border-radius: 8px;
  border: 0;
  padding: 9px 16px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.cehre-consent-actions [data-cehre-consent="accept"] {
  background: var(--accent, #3a9e8f);
  color: #fff;
}

.cehre-consent-actions [data-cehre-consent="accept"]:hover {
  opacity: 0.92;
}

.cehre-consent-actions [data-cehre-consent="reject"] {
  background: transparent;
  color: var(--text, #e8eef0);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

html[data-theme="light"] .cehre-consent-actions [data-cehre-consent="reject"] {
  color: var(--text, #142826);
  border-color: rgba(20, 40, 38, 0.18);
}

.cehre-consent-actions [data-cehre-consent="reject"]:hover {
  border-color: var(--accent-light, #6bc4b6);
}

@media (max-width: 720px) {
  .cehre-consent-panel {
    padding: 14px 0 16px;
  }

  .cehre-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0 16px;
  }

  .cehre-consent-panel p {
    font-size: 0.84rem;
  }

  .cehre-consent-actions {
    width: 100%;
  }

  .cehre-consent-actions button {
    flex: 1 1 0;
    padding: 11px 12px;
  }
}
