.cookie-banner-center {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 4rem);
  max-width: 460px;
  background: #FAFAF7;
  color: #24344D;
  border: 1px solid #B89554;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(36, 52, 77, 0.18);
  padding: 1rem;
  z-index: 9999;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  transition: all 0.4s ease;
  opacity: 0;
}
.cookie-banner-center.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-title { font-family: 'Marcellus', serif; font-size: 18px; font-weight: 400; margin: 0 0 0.75rem; color: #24344D; padding-bottom: 4px; border-bottom: 1px solid #B89554; display: inline-block; }
.cookie-text { color: #24344D; margin: 0 0 1rem; padding: 0.75rem; background: #ffffff; border: 1px solid #D7DADF; }
.cookie-text a { color: #7C5C24; text-decoration: underline; }
.cookie-buttons { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.cookie-btn { padding: 0.5rem 1rem; background: #B89554; color: #24344D; border: 1px solid #B89554; border-radius: 5px; font-weight: 700; font-size: 13px; cursor: pointer; }
.cookie-btn.reject, .cookie-btn.manage { background: #FAFAF7; color: #24344D; border-color: #D7DADF; }
.cookie-btn:active { transform: translateY(1px); }
.cookie-icon { position: fixed; bottom: 2rem; left: 2rem; width: 48px; height: 48px; background: #24344D; border: 2px solid #B89554; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; pointer-events: none; z-index: 9998; font-size: 24px; color: #FAFAF7; box-shadow: 0 12px 24px rgba(36,52,77,0.2); }
.cookie-icon.show { opacity: 1; pointer-events: all; }
.cookie-toggle-item { padding: 0.75rem 0; border-bottom: 1px solid #D7DADF; }
.toggle-title { font-weight: 700; color: #24344D; }
.toggle-desc { color: rgba(36,52,77,0.72); }
.cookie-back-btn { background: #FAFAF7; color: #24344D; border: 1px solid #B89554; border-radius: 50%; font-size: 16px; width: 28px; height: 28px; cursor: pointer; }
.toggle-switch input:checked + .slider { background: #B89554; }
@media (max-width: 480px) { .cookie-banner-center { bottom: 1rem; left: 1rem; right: 1rem; width: auto; } }
