.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 20px);
  width: 90%;
  max-height: 133px;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 50px;
  padding: 20px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  z-index: 99999;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cookie-banner p {
  font-family: var(--main-font);
  font-size: 20px;
  line-height: 25px;
  color: var(--brown-color);
  margin-bottom: 11px;
  font-weight: 600;
}

.cookie-accept-btn {
  padding: 10px 40px;
  background-color: var(--gold-color);
  color: #fff;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 16px;
  border: none;
  border-radius: 222px;
  cursor: pointer;
  line-height: 100%;
}

.cookie-accept-btn:hover {
  opacity: 0.9;
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 11px 15px;
    bottom: 16px;
    width: calc(100% - 32px);
    border-radius: 10px;
    height: auto;
  }

  .cookie-banner p {
    font-size: 14px;
    line-height: 15px;
  }

  .cookie-accept-btn {
    font-size: 14px;
    padding: 10px 30px;
  }
}