#consent-banner {
    position: fixed;
    bottom: 20px;
    left: 60px;
    max-width: 560px;
    background: #f7f7f6;
    color: #2d2d2d;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
}

#consent-banner.show {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

#consent-banner p {
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

#consent-banner a {
  color: #ff9966;
  text-decoration: underline;
}

#consent-banner .btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#consent-banner button {
    background: #ff6e24;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
}

#consent-banner button:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  #consent-banner {
    flex-direction: column;
    align-items: flex-start;
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
  #consent-banner .btns {
    width: 100%;
    justify-content: flex-end;
  }
}