    /* Стили окна */
    .cookie-consent {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 400px;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 15px;
      font-family: 'Arial', sans-serif;
      font-size: 14px;
      text-align: center;
      box-shadow: 0px 2px 8px rgba(0,0,0,0.15);
      z-index: 9999;
    }
    .cookie-consent p {
      margin: 0 0 12px;
      line-height: 1.4;
    }
    .cookie-consent button {
      background-color: #ac8b70;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      transition: background 0.3s;
    }
    .cookie-consent button:hover {
      background-color: #93755e;
    }

    /* Мобильная адаптивность */
    @media (max-width: 480px) {
      .cookie-consent {
        font-size: 13px;
        padding: 12px;
      }
      .cookie-consent button {
        width: 100%;
      }
    }