#cookieBanner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 26, 26, 0.75);
  color: #faf8f5;
  font-family: 'Lato', sans-serif;
  padding: 24px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border-radius: 0;
  border-top: 2px solid #c9a84c;
  display: none;
  z-index: 9999;
  max-width: 520px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease, bottom 0.5s ease;
}

#cookieBanner.show {
  display: block;
  opacity: 1;
  bottom: 40px;
}

#cookieBanner h4 {
  margin: 0 0 10px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3em;
  font-weight: 400;
  color: #c9a84c;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#cookieBanner p {
  margin: 0 0 18px 0;
  font-size: 0.9em;
  color: #faf8f5;
  line-height: 1.6;
}

#cookieBanner button {
  background: transparent;
  color: #faf8f5;
  border: 1px solid #c9a84c;
  padding: 8px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 0;
  font-family: 'Lato', sans-serif;
  font-size: 0.85em;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

#cookieBanner button:hover {
  background: #c9a84c;
  color: #1a1a1a;
}

#cookieBanner #acceptAll {
  background: #c9a84c;
  color: #1a1a1a;
  border: 1px solid #c9a84c;
}

#cookieBanner #acceptAll:hover {
  background: #b8960c;
  border-color: #b8960c;
}

#cookieSettings {
  display: none;
  margin-top: 15px;
  font-size: 0.9em;
  text-align: left;
  border-top: 1px solid #333;
  padding-top: 15px;
}

#cookieSettings label {
  display: block;
  margin-bottom: 8px;
  color: #faf8f5;
}

#cookieSettings input[type="checkbox"] {
  accent-color: #c9a84c;
  margin-right: 8px;
}