.cookie-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-overlay.cookie-overlay--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner {
  background: transparent;
  max-width: 1100px;
  width: 100%;
  padding: 20px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-banner__title {
  display: none;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 0;
}

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

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 12px 28px;
  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;
  white-space: nowrap;
}

.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: transparent;
  color: #1a1a1a;
  border: 1px solid #cccccc;
}

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 16px 20px;
  }

  .cookie-banner__text {
    text-align: left;
  }

  .cookie-banner__buttons {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
  }
}
