/* Alize — KVKK / Çerez bildirimi */

body.alize-theme .alize-cc-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 13000;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: var(--cream);
  padding: 18px 20px;
  box-shadow: 0 -8px 32px rgba(12, 22, 38, 0.35);
  border-top: 2px solid rgba(198, 166, 100, 0.35);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

body.alize-theme .alize-cc-banner.is-visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

body.alize-theme .alize-cc-banner.is-hiding {
  transform: translateY(100%);
  opacity: 0;
}

body.alize-theme .alize-cc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

body.alize-theme .alize-cc-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(198, 166, 100, 0.14);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

body.alize-theme .alize-cc-text {
  flex: 1;
  min-width: 260px;
}

body.alize-theme .alize-cc-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(244, 239, 228, 0.88);
  font-weight: 300;
}

body.alize-theme .alize-cc-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

body.alize-theme .alize-cc-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  white-space: nowrap;
}

body.alize-theme .alize-cc-link:hover {
  color: var(--gold);
}

body.alize-theme .alize-cc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

body.alize-theme .alize-cc-btn {
  border-radius: 8px;
  padding: 10px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

body.alize-theme .alize-cc-btn--reject {
  background: transparent;
  border-color: rgba(244, 239, 228, 0.35);
  color: rgba(244, 239, 228, 0.85);
}

body.alize-theme .alize-cc-btn--reject:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

body.alize-theme .alize-cc-btn--accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border: none;
}

body.alize-theme .alize-cc-btn--accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(198, 166, 100, 0.35);
}

@media (max-width: 768px) {
  body.alize-theme .alize-cc-banner {
    padding: 16px;
  }

  body.alize-theme .alize-cc-inner {
    gap: 14px;
  }

  body.alize-theme .alize-cc-actions {
    width: 100%;
  }

  body.alize-theme .alize-cc-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}
