#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #faf2eb;
  border-top: 1px solid #c4ac99;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(91, 66, 51, 0.1);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #5b4233;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#consent-banner.visible {
  transform: translateY(0);
}

#consent-banner p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  line-height: 1.6;
}

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

.consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.consent-btn {
  padding: 10px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.consent-btn:hover {
  opacity: 0.85;
}

.consent-btn--accept {
  background: #5b4233;
  color: #faf2eb;
}

.consent-btn--reject {
  background: transparent;
  color: #766055;
  border: 1px solid #c4ac99;
}

@media (max-width: 600px) {
  #consent-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .consent-buttons {
    width: 100%;
  }

  .consent-btn {
    flex: 1;
    text-align: center;
  }
}
