.cookie-consent {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  width: min(760px, calc(100% - 48px));
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #15111c;
  color: #fff;
  border: 1px solid rgba(166, 111, 255, 0.55);
  box-shadow: 0 18px 56px rgba(9, 7, 13, 0.35);
}

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

.cookie-consent strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.cookie-consent p {
  margin: 0;
  color: #c2bdc7;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-consent a,
.cookie-settings {
  color: #c9aeff;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
}

.cookie-consent__actions button {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(201, 174, 255, 0.55);
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-consent__actions button:last-child {
  border-color: #8247f5;
  background: #8247f5;
}

.cookie-consent__actions button:hover {
  border-color: #a66fff;
}

.cookie-consent__actions button:last-child:hover {
  background: #7138df;
}

.cookie-settings {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-settings[hidden] {
  display: none;
}

@media (max-width: 767px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 18px;
    display: block;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .cookie-consent__actions button {
    width: 100%;
    white-space: normal;
  }
}
