.cnd-cookie-consent {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 99999;
  max-width: 980px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

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

.cnd-cookie-consent__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(5, 25, 50, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.cnd-cookie-consent__content {
  flex: 1 1 auto;
}

.cnd-cookie-consent__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.cnd-cookie-consent__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.cnd-cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
}

.cnd-cookie-consent__btn {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.cnd-cookie-consent__btn:hover {
  transform: translateY(-1px);
}

.cnd-cookie-consent__btn--primary {
  background: #00a8e8;
  color: #ffffff;
}

.cnd-cookie-consent__btn--primary:hover {
  background: #008fd0;
}

.cnd-cookie-consent__btn--secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #ffffff;
}

.cnd-cookie-consent__btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .cnd-cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .cnd-cookie-consent__inner {
    display: block;
    padding: 16px;
    border-radius: 16px;
  }

  .cnd-cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .cnd-cookie-consent__btn {
    width: 100%;
    padding: 11px 14px;
  }
}