/* Cookie Consent Banner */
#cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #0e1116;
    color: #fff;
    padding: 18px 22px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    z-index: 9999;
    font-size: 15px;
  }
  
  #cookie-consent p {
    margin: 0;
    line-height: 1.4;
    flex: 1;
  }
  
  #cookie-consent button {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #cookie-consent button:hover {
    background: #c82f3a;
  }
  
  #cookie-consent .btn-refuse {
    background: #444;
  }
  
  #cookie-consent .btn-refuse:hover {
    background: #222;
  }
  