.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.cookie-overlay.cookie-overlay--hidden {
  opacity: 0;
  pointer-events: none;
}

.cookie-banner {
  background: #fff;
  border-radius: 12px;
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.cookie-banner__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 8px 0;
}

.cookie-banner__text a {
  color: #0a7e3f;
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.cookie-banner__btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-transform: capitalize;
}

.cookie-banner__btn:active {
  transform: scale(0.98);
}

.cookie-banner__btn--accept {
  background-color: #0a7e3f;
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background-color: #086630;
}

.cookie-banner__btn--reject {
  background-color: #f0f0f0;
  color: #1a1a1a;
}

.cookie-banner__btn--reject:hover {
  background-color: #e0e0e0;
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 24px 20px;
    width: 95%;
  }

  .cookie-banner__title {
    font-size: 1.25rem;
  }

  .cookie-banner__buttons {
    flex-direction: column;
  }
}
