.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 20px;
  color: #ffffff;
  background: #0c293f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
  font-family: Arial, sans-serif;
}

.cookie-banner__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner__copy strong {
  font-size: 15px;
}

.cookie-banner__copy span {
  color: #d9e7ef;
}

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 9px;
}

.cookie-banner button {
  min-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.cookie-banner button.cookie-accept {
  color: #0c293f;
  background: #65d2ad;
  border-color: #65d2ad;
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 80px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .cookie-banner__actions button {
    flex: 1;
  }
}
