#cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(145deg, #3a5f5f, #2a4a4a);
  border-top: 3px solid var(--primary-accent);
  color: #e5e7eb;
  padding: 2.5rem 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  font-family: var(--font-sans);
}

#cookie-consent-banner.active {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-icon svg {
    width: 56px;
    height: 56px;
    fill: var(--primary-accent);
    flex-shrink: 0;
}

.cookie-text p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 65ch;
}

.cookie-text a {
  color: var(--primary-accent);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 1.5rem;
  margin-left: 2rem;
  flex-shrink: 0;
}

.cookie-buttons button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

#cookie-accept-btn {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
  color: var(--primary-dark);
}

#cookie-accept-btn:hover {
  background-color: transparent;
  color: var(--primary-accent);
}

#cookie-decline-btn {
  background-color: transparent;
  border-color: #6a7e7e;
  color: var(--neutral-light);
}

#cookie-decline-btn:hover {
  background-color: #4a5e5e;
  border-color: #4a5e5e;
}

@media (max-width: 768px) {
  #cookie-consent-banner {
    flex-direction: column;
    text-align: center;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 2rem 1.5rem;
  }
  .cookie-icon {
    display: none;
  }
  .cookie-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .cookie-text p {
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-left: 0;
    width: 100%;
  }
  .cookie-buttons button {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}