/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 02 2026 | 23:14:17 */
/* ================================
   BLKFOG Cookie Banner – Simple
   ================================ */

#cookie-banner {
  display: none; /* hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #ccc;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.4;
  z-index: 9999;
}

.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
}

#cookie-accept {
  background: transparent;
  border: 1px solid #666;
  color: #fff;
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

#cookie-accept:hover {
  border-color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  #cookie-accept {
    width: 100%;
  }
}