#cookie-banner {
 display: none;
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: rgba(255,255,255,0.97);
 backdrop-filter: blur(16px);
 -webkit-backdrop-filter: blur(16px);
 color: #1a1a1a;
 border-radius: 1.5rem 1.5rem 0 0;
 padding: 1.5rem 1.5rem 1.75rem !important;
 margin: 0 !important;
 gap: 0;
 z-index: 99999;
 box-shadow: 0 -8px 40px rgba(0,0,0,0.08), 0 -1px 0 rgba(255,106,0,0.12);
 font-family: 'Poppins', sans-serif;
 box-sizing: border-box;
 animation: cookieSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
#cookie-banner *,
#cookie-banner *::before,
#cookie-banner *::after {
  box-sizing: border-box;
}
#cookie-banner.visible {
  display: flex;
  flex-direction: column;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (min-width: 640px) {
  #cookie-banner {
    bottom: 1.25rem;
    left: 50%;
    right: auto;
    width: min(92vw, 520px);
    transform: translateX(-50%);
    border-radius: 1.25rem;
    padding: 1.75rem 2rem !important;
    animation: cookieSlideUpDesktop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  }
  @keyframes cookieSlideUpDesktop {
    from { opacity: 0; transform: translateX(-50%) translateY(2rem); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
}
#cookie-banner .cb-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
#cookie-banner .cb-text {
  font-size: 0.84rem;
  line-height: 1.6;
  color: #555;
  font-family: 'Poppins', sans-serif;
}
#cookie-banner .cb-text strong {
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
  font-family: 'Poppins', sans-serif;
}
#cookie-banner .cb-text a {
  color: #ff6a00 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255,106,0,0.35);
  transition: text-decoration-color 0.2s;
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
#cookie-banner .cb-text a:hover {
  text-decoration-color: #ff6a00;
}
#cookie-banner .cb-buttons {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  align-items: center;
}
#cookie-banner .cb-accept {
  background: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.7rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
#cookie-banner .cb-accept:hover {
  background: #e85e00;
  transform: translateY(-1px);
}
#cookie-banner .cb-accept:active {
  transform: translateY(0);
}
#cookie-banner .cb-reject {
  background: transparent;
  color: #888;
  border: 1.5px solid #ddd;
  border-radius: 0.75rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
#cookie-banner .cb-reject:hover {
  color: #555;
  border-color: #bbb;
}
