﻿.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: rgba(25, 25, 25, 0.95);
  color: #fff;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-consent__text a {
  color: #9fd1ff;
  text-decoration: underline;
}
.cookie-consent__actions {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}
.cookie-consent__btn {
  background: #22c55e;
  color: #0b1f13;
  border: none;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 14px;
  cursor: pointer;
}
.cookie-consent__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #8a8a8a;
}
@media (max-width: 768px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-consent__actions {
    width: 100%;
  }
  .cookie-consent__btn {
    flex: 1;
    text-align: center;
  }
}
