.cookie-consent {
  position: fixed;
  z-index: 99999;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid rgba(220, 51, 18, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.18);
  color: #1b1b1b;
  font-family: Inter, Arial, sans-serif;
}

.cookie-consent__text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.cookie-consent__text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-consent__text p + p {
  margin-top: 7px;
  font-size: 12px;
}

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

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

.cookie-consent__button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #dc3312;
  border-radius: 10px;
  background: #dc3312;
  color: #fff;
  cursor: pointer;
  font: 600 14px/1 Inter, Arial, sans-serif;
}

.cookie-consent__button:hover {
  border-color: #212121;
  background: #212121;
}

.cookie-consent__button--secondary {
  background: #fff;
  color: #1b1b1b;
}

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

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

  .cookie-consent__actions {
    margin-top: 16px;
  }

  .cookie-consent__button {
    flex: 1 1 50%;
    padding: 0 10px;
  }
}
