.privacy-consent-banner {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid #d9d9d6;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(45, 45, 45, 0.16);
  color: #2D2D2D;
  font-family: Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
}

.privacy-consent-banner[hidden] {
  display: none;
}

.privacy-consent-banner p {
  margin: 0;
}

.privacy-consent-banner a {
  color: #1A7A7A;
}

.privacy-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.privacy-consent-categories {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.privacy-consent-categories p {
  display: grid;
  gap: 2px;
}

.privacy-consent-categories span {
  color: #555555;
}

.privacy-consent-preferences {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #d9d9d6;
}

.privacy-consent-preferences[hidden] {
  display: none;
}

.privacy-consent-preferences label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-consent-button {
  min-height: 40px;
  padding: 10px 16px;
  border: 1.5px solid #1A7A7A;
  border-radius: 22px;
  background: #ffffff;
  color: #1A7A7A;
  cursor: pointer;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy-consent-button.primary {
  background: #1A7A7A;
  color: #ffffff;
}

@media (max-width: 680px) {
  .privacy-consent-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .privacy-consent-button {
    width: 100%;
  }
}
