.cookie-banner-center {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 4rem);
  max-width: 500px;
  background: rgba(255,255,255,.96);
  color: #063F46;
  border: 1px solid rgba(6,182,212,.24);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(6,63,70,.22);
  padding: 1.25rem;
  z-index: 9999;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  transition: all 0.4s ease;
  opacity: 0;
}
.cookie-banner-center.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 .8rem;
  color: #063F46;
}
.cookie-text { color: #315b60; margin: 0 0 1rem; }
.cookie-text a { color: #06B6D4; font-weight: 700; text-decoration: none; }
.cookie-buttons { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.cookie-btn {
  padding: .72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(6,182,212,.22);
  background: #ffffff;
  color: #063F46;
  font-weight: 800;
  cursor: pointer;
}
.cookie-btn.accept {
  background: linear-gradient(90deg, #06B6D4, #FF6B6B, #FDE68A, #15803D);
  color: #063F46;
  border: 0;
}
.cookie-btn.reject, .cookie-btn.manage { background: #FFF7DF; }
.cookie-icon {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #06B6D4, #FF6B6B, #FDE68A, #15803D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  font-size: 25px;
  box-shadow: 0 14px 36px rgba(6,63,70,.2);
}
.cookie-icon.show { opacity: 1; pointer-events: all; }
.cookie-toggle-item { padding: .8rem 0; border-bottom: 1px solid rgba(6,182,212,.16); }
.toggle-title { font-weight: 800; color: #063F46; }
.toggle-desc { color: #315b60; font-size: 13px; }
.cookie-back-btn {
  background: #E8FBF5;
  border: 1px solid rgba(6,182,212,.22);
  border-radius: 999px;
  color: #063F46;
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin-right: .5rem;
}
.toggle-switch { position: relative; display: inline-block; width: 48px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background: #d7ece8; transition: .3s; border-radius: 999px; }
.slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px; background: white; transition: .3s; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.16); }
input:checked + .slider { background: #06B6D4; }
input:checked + .slider:before { transform: translateX(22px); }
@media (max-width: 480px) { .cookie-banner-center { bottom: 1rem; left: 1rem; right: 1rem; width: auto; transform: translateY(120%); } .cookie-banner-center.show { transform: translateY(0); } .cookie-buttons { flex-direction: column; } }
