
.cookie-banner-center {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 4rem);
  max-width: 520px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  color: #17324D;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(23, 50, 77, 0.18);
  padding: 2rem;
  z-index: 9999;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  border: 1px solid rgba(79, 163, 217, 0.22);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0;
}
.cookie-banner-center.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-title { font-family: "Playfair Display", serif; font-size: 1.55rem; font-weight: 700; margin: 0 0 0.75rem; color: #17324D; }
.cookie-text { color: rgba(23, 50, 77, .78); margin: 0 0 1.5rem; }
.cookie-text a { color: #4FA3D9; text-decoration: underline; }
.cookie-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cookie-btn { padding: 1rem; border-radius: 999px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all .3s ease; border: none; }
.cookie-btn.accept { background: #4FA3D9; color: #fff; box-shadow: 0 12px 28px rgba(79,163,217,.28); }
.cookie-btn.accept:hover { transform: translateY(-2px); background: #17324D; }
.cookie-btn.reject { background: #F6E9D7; color: #17324D; border: 1px solid rgba(23,50,77,.08); }
.cookie-btn.reject:hover, .cookie-btn.manage:hover { background: #DCEFFD; }
.cookie-btn.manage { grid-column: span 2; background: #fff; color: #17324D; border: 1px solid rgba(79,163,217,.22); }
.cookie-icon { position: fixed; bottom: 2rem; left: 2rem; width: 56px; height: 56px; background: #F6E9D7; color:#17324D; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 14px 36px rgba(23,50,77,.16); transition: all .3s ease; opacity: 0; pointer-events: none; z-index: 9998; font-size: 28px; }
.cookie-icon.show { opacity: 1; pointer-events: all; }
.cookie-icon:hover { transform: scale(1.08); }
.cookie-toggle-item { display: flex; justify-content: space-between; align-items: center; padding: 1.15rem 0; border-bottom: 1px solid rgba(79,163,217,.2); }
.toggle-title { font-weight: 700; color: #17324D; }
.toggle-desc { font-size: .875rem; color: rgba(23,50,77,.66); margin-top:.25rem; }
.slider { background: #DCEFFD; }
input:checked + .slider { background: #4FA3D9; }
.cookie-back-btn { background: none; border: none; font-size: 28px; color: #17324D; cursor:pointer; padding:0; line-height:1; }
@media (max-width: 480px) { .cookie-banner-center { bottom: 1rem; left: 1rem; right: 1rem; width:auto; max-width:none; transform: translateY(120%); } .cookie-banner-center.show { transform: translateY(0); } .cookie-buttons { grid-template-columns: 1fr; } .cookie-btn.manage { grid-column: span 1; } }
