 #cookie-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 9999;
  }
  /* окно */
  #cookie-box {
	display: flex;
    background: #fff;
    padding: 10px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    gap: 5px;
    flex-direction: column;
    align-items: center;
  }
  #cookie-box label {
    display: flex;
    gap: 8px;
    cursor: pointer;
  }
  #cookie-box button {
    background: #007bff;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
  }
  #cookie-box button:disabled {
    background: #aaa;
    cursor: not-allowed;
  }