﻿/* ==========================================
   COOKIE BANNER — PT ROTTERDAM
   ========================================== */
#cookie-banner {
  position: fixed;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #141414;
  border: 1px solid rgba(0,92,40,.3);
  border-radius: 16px;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 720px;
  width: calc(100% - 3rem);
  box-shadow: 0 -4px 40px rgba(0,0,0,.6);
  transition: bottom 0.4s ease;
}

#cookie-banner.visible {
  bottom: 1.5rem;
}

#cookie-banner p {
  color: #aaa;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

#cookie-banner p a {
  color: #005c28;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
