@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600&family=Oranienbaum&display=swap");

.ee-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ee-cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ee-cookie-banner__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 20px;
  background: #183d39;
  color: #fff2eb;
  border: 1px solid rgba(255, 242, 235, 0.2);
  border-top: 3px solid #eb8200;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 16px;
}

.ee-cookie-banner__title {
  margin: 0;
  min-width: 170px;
  font-family: "Oranienbaum", Georgia, serif;
  font-size: 22px;
  letter-spacing: 0.7px;
  line-height: 1.1;
}

.ee-cookie-banner__text {
  margin: 0;
  flex: 1;
  font-family: "Crimson Pro", "Roboto Slab", Georgia, serif;
  font-size: 17px;
  line-height: 1.35;
}

.ee-cookie-banner__link {
  color: #eb8200;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 6px;
}

.ee-cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.ee-cookie-banner__button {
  border: 1px solid #eb8200 !important;
  background: #eb8200 !important;
  color: #183d39 !important;
  font-family: "Crimson Pro", "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ee-cookie-banner__button--accept {
  background: #eb8200 !important;
  border-color: #eb8200 !important;
  color: #183d39 !important;
}

.ee-cookie-banner__button--accept:hover,
.ee-cookie-banner__button--accept:focus {
  background: #d87600 !important;
  border-color: #d87600 !important;
  color: #183d39 !important;
}

.ee-cookie-banner__button--reject {
  background: #eb8200 !important;
  border-color: #eb8200 !important;
  color: #183d39 !important;
}

.ee-cookie-banner__button--reject:hover,
.ee-cookie-banner__button--reject:focus {
  background: #d87600 !important;
  border-color: #d87600 !important;
  color: #183d39 !important;
}

@media (max-width: 900px) {
  .ee-cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ee-cookie-banner__title {
    min-width: auto;
  }

  .ee-cookie-banner__actions {
    width: 100%;
  }

  .ee-cookie-banner__button {
    width: 100%;
  }
}
