.sath-cookie-consent {
  position: fixed;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  z-index: 100000;
  width: min(560px, calc(100vw - 32px));
  color: #f7fbff;
  background: rgba(2, 17, 29, 0.96);
  border: 1px solid rgba(0, 159, 218, 0.45);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  padding: 22px;
  font-family: Inter, Arial, sans-serif;
  transform: translateY(calc(100% + 42px));
  opacity: 0;
  pointer-events: none;
  transition: transform 260ms ease, opacity 260ms ease;
}

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

.sath-cookie-consent__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.sath-cookie-consent__text {
  margin: 0;
  color: rgba(247, 251, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.sath-cookie-consent__text a {
  color: #58d7ff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sath-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}

.sath-cookie-consent__button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  min-height: 42px;
  padding: 0 18px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sath-cookie-consent__button--ghost {
  background: transparent;
  color: #f7fbff;
}

.sath-cookie-consent__button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.sath-cookie-consent__button--primary {
  background: #009fda;
  border-color: #009fda;
  color: #00111d;
}

.sath-cookie-consent__button--primary:hover {
  background: #45ccff;
  border-color: #45ccff;
}

@media (max-width: 680px) {
  .sath-cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 18px;
    border-radius: 12px;
  }

  .sath-cookie-consent__actions {
    justify-content: stretch;
  }

  .sath-cookie-consent__button {
    flex: 1 1 130px;
  }
}
