.privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  /* dark background – change to match your site */
  color: #fff;
  z-index: 999999;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  transition: transform 0.4s ease;
  transform: translateY(100%);
}

.privacy-banner.visible {
  transform: translateY(0);
}

.privacy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.privacy-text {
  margin: 0;
  flex: 1;
}

.privacy-text a {
  color: #ffd700;
  /* gold/yellow link – adjust */
  text-decoration: underline;
}

.privacy-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0 0.5rem;
  line-height: 1;
}

.privacy-close:hover {
  color: #ff6b6b;
}

.privacy-buttons {
  display: flex;
  gap: 1rem;
}

.privacy-buttons>.btn {
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.privacy-accept {
  background: #27ae60;
}

.privacy-decline {
  background: #ae2727;
}

.privacy-accept:hover {
  background: #219653;
}

.privacy-decline:hover {
  background: #962121;
}

.privacy-open {
  background-color: #dfdfdf;
  color: #00a315;
  border: none;
  border-radius: 8px;
  padding: 1px 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.privacy-open:hover {
  background-color: #00a315;
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.privacy-open:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.privacy-open::before {
  content: "🍪";
  font-size: 1.2em;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .privacy-inner {
    flex-direction: column;
    text-align: center;
  }

  .privacy-text {
    margin-bottom: 0.8rem;
  }

  .privacy-buttons {
    width: 100%;
    justify-content: center;
  }

  .privacy-buttons>btn {
    width: 40%;
    max-width: 150px;
  }
}