/* LastCO cookie consent banner */
#lco-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000000;
  padding: 14px 16px;
  background: rgba(13, 14, 18, 0.97);
  border-top: 2px solid #d4213a;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.55);
  font-family: Arial, Helvetica, sans-serif;
}

#lco-cookie-banner .lco-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

#lco-cookie-banner .lco-cookie-text {
  flex: 1 1 320px;
  color: #e8e6e3;
  font-size: 14px;
  line-height: 1.45;
}

#lco-cookie-banner .lco-cookie-text strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

#lco-cookie-banner .lco-cookie-text p {
  margin: 0;
  color: #c8c6c3;
}

#lco-cookie-banner .lco-cookie-text a {
  color: #ff6b7a;
  text-decoration: underline;
}

#lco-cookie-banner .lco-cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#lco-cookie-banner .lco-cookie-btn {
  cursor: pointer;
  border-radius: 4px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  line-height: 1.2;
}

#lco-cookie-banner .lco-cookie-accept {
  background: #d4213a;
  color: #fff;
  border-color: #d4213a;
}

#lco-cookie-banner .lco-cookie-accept:hover {
  background: #b81c32;
}

#lco-cookie-banner .lco-cookie-reject {
  background: transparent;
  color: #e8e6e3;
  border-color: #555963;
}

#lco-cookie-banner .lco-cookie-reject:hover {
  border-color: #aaa;
  color: #fff;
}

@media (max-width: 640px) {
  #lco-cookie-banner .lco-cookie-actions {
    width: 100%;
  }
  #lco-cookie-banner .lco-cookie-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
