    #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #222;
      color: #fff;
      font-family: sans-serif;
      font-size: 14px;
      padding: 12px 20px;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      display: none; /* Сначала скрыт */
      z-index: 9999;
      border-top: 1px solid #dee2e6;
      box-sizing: border-box;
    }

    .cookie-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      gap: 15px;
    }

    .cookie-text {
      flex: 1;
      min-width: 300px;
      line-height: 1.5;
    }

    .cookie-text a {
      color: #cc5255;
      text-decoration: underline;
    }

    .cookie-text a:hover {
      text-decoration: none;
    }

    .cookie-button {
      white-space: nowrap;
      padding: 8px 16px;
      background-color: #cc5255;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
    }

    .cookie-button:hover {
      background-color: #45a049;
    }
	
	