/* Cookie Consent Banner - EN (Left text, right buttons; center on mobile) */
.cookies-popover {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  background: #fff;
  padding: 12px 24px;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
.cookies-popover .box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cookies-popover .txt {
  flex: 1;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}
.cookies-popover .txt p {
  margin: 0 0 4px 0;
}
.cookies-popover .txt a {
  color: #0364dd;
  text-decoration: none;
}
.cookies-popover .txt a:hover {
  text-decoration: underline;
}
.cookies-popover .ckbox {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookies-popover .ckbox .public-btn {
  min-width: 110px;
  height: 38px;
  padding: 0 20px;
  border-radius: 20px;
  background: none;
  border: 1px solid #0364dd;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cookies-popover .ckbox .public-btn span {
  color: #0364dd;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.cookies-popover .ckbox .public-btn:hover {
  background: #0364dd;
}
.cookies-popover .ckbox .public-btn:hover span {
  color: #fff;
}
@media (max-width: 768px) {
  .cookies-popover {
    padding: 12px 16px;
  }
  .cookies-popover .box {
    flex-direction: column;
    align-items: stretch;
  }
  .cookies-popover .ckbox {
    justify-content: center;
  }
  .cookies-popover .ckbox .public-btn {
    min-width: 90px;
    height: 34px;
    padding: 0 12px;
  }
  .cookies-popover .ckbox .public-btn span {
    font-size: 12px;
  }
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookies-popover.show {
  display: block !important;
  animation: cookieSlideUp 0.3s ease-out;
}