/* Cookie Consent Banner
   ========================================================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2d2a26;
  color: #f5f0e8;
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cookie-consent__title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cookie-consent__text p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-consent__text a {
  color: #a3d9a5;
  text-decoration: underline;
}

.cookie-consent__text a:hover {
  color: #c4e8c5;
}

.cookie-consent__buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-consent__btn {
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  white-space: nowrap;
}

.cookie-consent__btn--accept {
  background: #4a7b57;
  color: #fff;
  border-color: #4a7b57;
}

.cookie-consent__btn--accept:hover {
  background: #3d6849;
}

.cookie-consent__btn--reject {
  background: transparent;
  color: #f5f0e8;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-consent__btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .cookie-consent__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent__buttons {
    width: 100%;
  }

  .cookie-consent__btn {
    flex: 1;
  }
}
