/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--yellow-green--100);
  color: var(--eerie-black--500);
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--fonts--font-family);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-shrink: 0;
  }
}

.cookie-text {
  font-size: var(--font-sizes--paragraph-small);
  line-height: 1.5;
}

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

.cookie-btn {
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  border: none;
}

.cookie-btn.accept {
  background-color: var(--jonquil--500);
  color: var(--russet--700);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cookie-btn.accept:hover {
  background-color: var(--jonquil--300);
  transform: translateY(-2px);
}

.cookie-btn.decline {
  background-color: transparent;
  border: 2px solid var(--russet--700);
  color: var(--russet--700);
}

.cookie-btn.decline:hover {
  background-color: rgba(0,0,0,0.05);
}
