.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--green-dark, #1e4530);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

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

.cookie-consent-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-consent-text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 320px;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-consent-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 26px;
  cursor: pointer;
  border-radius: 2px;
  transition: 0.3s;
  white-space: nowrap;
}

.cookie-consent-btn--accept {
  background: var(--beige, #f5e6a3);
  color: var(--green-dark, #1e4530);
  border: 1px solid var(--beige, #f5e6a3);
  font-weight: 500;
}

.cookie-consent-btn--accept:hover {
  background: var(--beige-dark, #ecdfa0);
}

.cookie-consent-btn--decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-consent-btn--decline:hover {
  border-color: var(--beige, #f5e6a3);
  color: var(--beige, #f5e6a3);
}

@media (max-width: 560px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-consent-actions {
    justify-content: center;
  }
}
