.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(640px, calc(100% - 24px));
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: #252525;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  font-family: var(--font-body, "Golos Text", sans-serif);
}

.cookie-consent__link {
  color: #1d7cbd;
  text-decoration: underline;
}

.cookie-consent__btn {
  flex: 0 0 auto;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: #2499ea;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.cookie-consent__btn:hover {
  background: #1b83c9;
  box-shadow: 0 4px 10px rgba(36, 153, 234, 0.35);
}

@media (max-width: 767px) {
  .cookie-consent {
    left: 50%;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    transform: translateX(-50%);
    width: calc(100% - 20px);
  }

  .cookie-consent__btn {
    width: 100%;
    font-size: 14px;
    padding: 12px 18px;
  }
}
