#cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15, 18, 26, 0.95);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(138, 63, 252, 0.3);
  backdrop-filter: blur(10px);
  display: none; /* ซ่อนไว้ก่อน */
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.cookie-btn {
  background: #8a3ffc;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}
.cookie-btn:hover {
  background: #a370ff;
}

@media (max-width: 768px) {
  #cookie-consent {
    bottom: 90px; /* ขยับขึ้นเพื่อไม่ให้ทับกับ bottom_nav ที่มีความสูง 70px */
    z-index: 10000; /* ให้อยู่เหนือ bottom_nav */
  }
}
