/**
 * Cookie Notice Banner – fixed bottom, dark bar, Accept/Reject
 */
#cookie-notice-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 14px 20px 14px 24px;
  background: #2c2c2c;
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#cookie-notice-bar.cookie-notice-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

#cookie-notice-bar .cookie-notice-text {
  flex: 1;
  min-width: 200px;
}

#cookie-notice-bar .cookie-notice-text a {
  color: #d19552;
  text-decoration: underline;
}

#cookie-notice-bar .cookie-notice-text a:hover {
  color: #e0c078;
}

#cookie-notice-bar .cookie-notice-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-notice-bar .cookie-notice-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

#cookie-notice-bar .cookie-notice-btn-accept {
  background: #d19552;
  color: #1a1a1a;
}

#cookie-notice-bar .cookie-notice-btn-accept:hover {
  background: #e0c078;
}

#cookie-notice-bar .cookie-notice-btn-reject {
  background: #444;
  color: #e8e8e8;
  border: 1px solid #666;
}

#cookie-notice-bar .cookie-notice-btn-reject:hover {
  background: #555;
}

#cookie-notice-bar .cookie-notice-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

#cookie-notice-bar .cookie-notice-close:hover {
  color: #e8e8e8;
}

@media (max-width: 640px) {
  #cookie-notice-bar {
    padding: 12px 16px;
    font-size: 13px;
  }
  #cookie-notice-bar .cookie-notice-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
