.sinora-cookie-consent {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 120;
  width: min(420px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(210, 171, 103, 0.26);
  border-radius: 18px;
  background: rgba(5, 11, 20, 0.92);
  color: rgba(244, 235, 221, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.sinora-cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sinora-cookie-consent h2 {
  margin: 0 0 8px;
  color: #f4ebdd;
  font-size: 14px;
  font-weight: 700;
}

.sinora-cookie-consent p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
}

.sinora-cookie-consent a {
  color: #c9a961;
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 97, 0.4);
  text-underline-offset: 3px;
}

.sinora-cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.sinora-cookie-consent__accept {
  border: 0;
  border-radius: 10px;
  padding: 11px 15px;
  background: linear-gradient(135deg, #f3d18c, #b18843);
  color: #030813;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
}

.sinora-cookie-consent__link {
  font-size: 12px;
}

@media (max-width: 640px) {
  .sinora-cookie-consent {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
