.cookie-consent {
  position: fixed;
  z-index: 9999;
  left: 16px;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  width: min(100% - 32px, 580px);
  margin: 0 auto;
  padding: 18px;
  color: #151716;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #d8ddd8;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(19, 25, 22, 0.2);
  font: 14px/1.5 Arial, sans-serif;
}

.cookie-consent__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.cookie-consent__text {
  margin: 0;
  color: #4b504c;
}

.cookie-consent__text a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-consent__actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.cookie-consent__button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid #bfc6bf;
  border-radius: 6px;
  color: #151716;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.cookie-consent__button--accept {
  border-color: #151716;
  color: #fff;
  background: #151716;
}

.cookie-consent__button:focus-visible {
  outline: 3px solid #6b8cff;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    width: min(100% - 24px, 580px);
    padding: 16px;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
