.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #fff;
  padding: 20px 24px;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.3);
  font-family: inherit;
}

.cookie-consent__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-consent__text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #f2f2f2;
}

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

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

.cookie-consent__btn {
  padding: 10px 22px;
  border-radius: 4px;
  border: 1px solid #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #fff;
  transition: opacity 0.15s ease;
}

.cookie-consent__btn:hover {
  opacity: 0.8;
}

.cookie-consent__btn--accept {
  background: #ffffff;
  color: #1a1a1a;
}

@media (max-width: 600px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    justify-content: flex-end;
  }
}
