.cookie-consent {
  position: fixed;
  z-index: 10000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: #fff;
  font-family: inherit;
}

.cookie-consent__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  background: #1d2430;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.cookie-consent__text {
  max-width: 760px;
  margin: 0 24px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.cookie-consent__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.cookie-consent__button {
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent__button--primary {
  color: #fff;
  background: #37aae1;
}

.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus-visible {
  background: #0083c2;
}

.cookie-consent__button--secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.cookie-consent__button--secondary:hover,
.cookie-consent__button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.cookie-consent__button:focus-visible,
.cookie-consent__text a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

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

  .cookie-consent__content {
    display: block;
    padding: 18px;
  }

  .cookie-consent__text {
    margin: 0 0 16px;
    font-size: 14px;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__button {
    flex: 1 1 50%;
    padding-right: 12px;
    padding-left: 12px;
  }
}
